public static enum ActionSequence.RunState extends java.lang.Enum<ActionSequence.RunState>
Modifier and Type | Method and Description |
---|---|
static ActionSequence.RunState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionSequence.RunState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionSequence.RunState NOT_RUN
public static final ActionSequence.RunState RUNNING
public static final ActionSequence.RunState FAILED
public static final ActionSequence.RunState SUCCEEDED
public static ActionSequence.RunState[] values()
for (ActionSequence.RunState c : ActionSequence.RunState.values()) System.out.println(c);
public static ActionSequence.RunState 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