public static enum SPRunner.Status extends java.lang.Enum<SPRunner.Status>
| Enum Constant and Description |
|---|
Cancelled |
Failed |
Finished |
Idle |
Running |
| Modifier and Type | Method and Description |
|---|---|
static SPRunner.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SPRunner.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SPRunner.Status Idle
public static final SPRunner.Status Running
public static final SPRunner.Status Finished
public static final SPRunner.Status Cancelled
public static final SPRunner.Status Failed
public static SPRunner.Status[] values()
for (SPRunner.Status c : SPRunner.Status.values()) System.out.println(c);
public static SPRunner.Status 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