|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Action.ActionStatus>
org.malai.action.Action.ActionStatus
public static enum Action.ActionStatus
Defines the different state of the action. @since 0.2
Enum Constant Summary | |
---|---|
ABORTED
When the action has been aborted. |
|
CREATED
When the action is created but not executed yet. |
|
DONE
When the action has been defined as done. |
|
EXECUTED
When the action has been created and executed one time. |
|
FLUSHED
The the action has been flushed. |
Method Summary | |
---|---|
static Action.ActionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Action.ActionStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 Action.ActionStatus CREATED
public static final Action.ActionStatus EXECUTED
public static final Action.ActionStatus ABORTED
public static final Action.ActionStatus DONE
public static final Action.ActionStatus FLUSHED
Method Detail |
---|
public static Action.ActionStatus[] values()
for (Action.ActionStatus c : Action.ActionStatus.values()) System.out.println(c);
public static Action.ActionStatus 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
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |