|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExecutionState>
com.dtolabs.rundeck.core.execution.workflow.state.ExecutionState
public enum ExecutionState
$INTERFACE is ... User: greg Date: 10/15/13 Time: 2:52 PM
Enum Constant Summary | |
---|---|
ABORTED
Execution was aborted |
|
FAILED
Finished with a failure |
|
NODE_MIXED
Mixed states among nodes |
|
NODE_PARTIAL_SUCCEEDED
Partial success for some nodes |
|
NOT_STARTED
After waiting the execution did not start |
|
RUNNING
Currently running |
|
RUNNING_HANDLER
Running error handler |
|
SUCCEEDED
Finished running successfully |
|
WAITING
Waiting to start running |
Method Summary | |
---|---|
boolean |
isCompletedState()
|
static ExecutionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExecutionState[] |
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 ExecutionState WAITING
public static final ExecutionState RUNNING
public static final ExecutionState RUNNING_HANDLER
public static final ExecutionState SUCCEEDED
public static final ExecutionState FAILED
public static final ExecutionState ABORTED
public static final ExecutionState NODE_PARTIAL_SUCCEEDED
public static final ExecutionState NODE_MIXED
public static final ExecutionState NOT_STARTED
Method Detail |
---|
public static ExecutionState[] values()
for (ExecutionState c : ExecutionState.values()) System.out.println(c);
public static ExecutionState 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 nullpublic boolean isCompletedState()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |