public enum StepExecutionState extends java.lang.Enum<StepExecutionState>
Enum Constant and Description |
---|
DONE |
EXECUTING |
FAILED |
PAUSED |
PENDING |
SKIP |
SKIPPED |
Modifier and Type | Method and Description |
---|---|
boolean |
isFinal() |
boolean |
isFinished() |
static StepExecutionState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StepExecutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StepExecutionState PENDING
public static final StepExecutionState SKIP
public static final StepExecutionState EXECUTING
public static final StepExecutionState PAUSED
public static final StepExecutionState FAILED
public static final StepExecutionState DONE
public static final StepExecutionState SKIPPED
public static StepExecutionState[] values()
for (StepExecutionState c : StepExecutionState.values()) System.out.println(c);
public static StepExecutionState 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 isFinal()
public boolean isFinished()