|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AepScheduleEvent.State>
com.neeve.aep.AepScheduleEvent.State
public static enum AepScheduleEvent.State
Enumerates a schedule event's states
Enum Constant Summary | |
---|---|
Activated
Schedule has been created activated and operational. |
|
Cancelled
Schedule cancellation is completed |
|
Cancelling
Application has initiated the cancel An application will not receive scheduled messages or events for this and cancelled state. |
|
NotActivated
Schedule has been created but not yet activated. |
Method Summary | |
---|---|
static AepScheduleEvent.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AepScheduleEvent.State[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AepScheduleEvent.State NotActivated
public static final AepScheduleEvent.State Activated
public static final AepScheduleEvent.State Cancelling
An application will not receive scheduled messages or events for this and cancelled state.
public static final AepScheduleEvent.State Cancelled
Method Detail |
---|
public static AepScheduleEvent.State[] values()
for (AepScheduleEvent.State c : AepScheduleEvent.State.values()) System.out.println(c);
public static AepScheduleEvent.State valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |