|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RemindWhere>
caltool.schedule.RemindWhere
public enum RemindWhere
RemindWhere defines one of three ways that the user is alerted when a scheduled event is to occur. OnScreen means the user is reminded with a op-up alert on her computer screen. BeepOnly means the user is reminded with a simple audible tone on the computer. Email means the user is sent an electronic mail message reminder.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RemindWhere OnScreen
public static final RemindWhere BeepOnly
public static final RemindWhere Email
Method Detail |
---|
public static final 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 name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |