public enum ExecutionState extends java.lang.Enum<ExecutionState>
| Enum Constant and Description |
|---|
aborted |
failed |
failed_with_retry |
other |
running |
succeeded |
timedout |
| Modifier and Type | Method and Description |
|---|---|
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 running
public static final ExecutionState succeeded
public static final ExecutionState aborted
public static final ExecutionState failed
public static final ExecutionState failed_with_retry
public static final ExecutionState timedout
public static final ExecutionState other
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 null