Package | Description |
---|---|
java.util |
MID Profile Utility Classes included from Java 2 Standard
Edition.
|
Modifier and Type | Method and Description |
---|---|
Date |
Calendar.getTime()
Gets this Calendar's current time.
|
Modifier and Type | Method and Description |
---|---|
void |
Timer.schedule(TimerTask task,
Date time)
Schedules the specified task for execution at the specified time.
|
void |
Timer.schedule(TimerTask task,
Date firstTime,
long period)
Schedules the specified task for repeated fixed-delay execution,
beginning at the specified time.
|
void |
Timer.scheduleAtFixedRate(TimerTask task,
Date firstTime,
long period)
Schedules the specified task for repeated fixed-rate execution,
beginning at the specified time.
|
void |
Calendar.setTime(Date date)
Sets this Calendar's current time with the given Date.
|
Copyright (c) 1990, 2012, Oracle and/or its affiliates. All rights reserved.