| Enum Constant and Description |
|---|
ABORTED |
COMPLETED |
FAILED |
NEW |
RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static Run.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Run.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Run.State NEW
public static final Run.State RUNNING
public static final Run.State COMPLETED
public static final Run.State ABORTED
public static final Run.State FAILED
public static Run.State[] values()
for (Run.State c : Run.State.values()) System.out.println(c);
public static Run.State 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