public enum RemindWhere extends java.lang.Enum<RemindWhere>
| Enum Constant and Description |
|---|
BeepOnly
Indicates that reminders are signaled with an audible beep only, with
no pop-up window.
|
Email
Indicates that reminders are send as email messages.
|
OnScreen
Indicates that reminders are displayed in an on-screen pop-up window.
|
| Modifier and Type | Method and Description |
|---|---|
static RemindWhere |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemindWhere[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemindWhere OnScreen
public static final RemindWhere BeepOnly
public static final RemindWhere Email
public static RemindWhere[] values()
for (RemindWhere c : RemindWhere.values()) System.out.println(c);
public static RemindWhere 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