public enum ReminderTimeUnit extends java.lang.Enum<ReminderTimeUnit>
| Enum Constant and Description |
|---|
DaysBefore
Indicates that a reminder occurs a specified number of days before a
scheduled item.
|
HoursBefore
Indicates that a reminder occurs a specified number of hours before a
scheduled item.
|
MinutesBefore
Indicates that a reminder occurs a specified number of minutes before a
scheduled item.
|
| Modifier and Type | Method and Description |
|---|---|
static ReminderTimeUnit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReminderTimeUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReminderTimeUnit MinutesBefore
public static final ReminderTimeUnit HoursBefore
public static final ReminderTimeUnit DaysBefore
public static ReminderTimeUnit[] values()
for (ReminderTimeUnit c : ReminderTimeUnit.values()) System.out.println(c);
public static ReminderTimeUnit 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 null