public static enum ReminderInterval.TimeUnit extends java.lang.Enum<ReminderInterval.TimeUnit>
| Enum Constant and Description |
|---|
DAYS
Taegliche Ausfuehrung.
|
HOURS
Stuendliche Ausfuehrung.
|
MONTHS
Monatliche Ausfuehrung.
|
WEEKS
Woechentliche Ausfuehrung.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCalendarField()
Liefert das zugehoerige java.util.Calendar-Feld.
|
static ReminderInterval.TimeUnit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReminderInterval.TimeUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReminderInterval.TimeUnit HOURS
public static final ReminderInterval.TimeUnit DAYS
public static final ReminderInterval.TimeUnit WEEKS
public static final ReminderInterval.TimeUnit MONTHS
public static ReminderInterval.TimeUnit[] values()
for (ReminderInterval.TimeUnit c : ReminderInterval.TimeUnit.values()) System.out.println(c);
public static ReminderInterval.TimeUnit valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getCalendarField()