public enum ExecutionState extends java.lang.Enum<ExecutionState>
Enum Constant and Description |
---|
COMPLETE |
ERROR |
LOCK |
NOT_EXECUTABLE |
NOT_INITIALIZED |
PAUSED |
RESET |
RESETTING |
RUNNING |
SCHEDULED |
SUSPENDED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ExecutionState |
getState(int ordinal) |
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 NOT_INITIALIZED
public static final ExecutionState NOT_EXECUTABLE
public static final ExecutionState SCHEDULED
public static final ExecutionState RUNNING
public static final ExecutionState PAUSED
public static final ExecutionState COMPLETE
public static final ExecutionState RESETTING
public static final ExecutionState RESET
public static final ExecutionState ERROR
public static final ExecutionState SUSPENDED
public static final ExecutionState UNKNOWN
public static final ExecutionState LOCK
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 static ExecutionState getState(int ordinal)