public enum ExecutionState extends java.lang.Enum<ExecutionState>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is nullpublic boolean isCompletedState()