| Enum Constant and Description |
|---|
AssertionsFailed |
AssertionsSuccessful |
AutomaticallyStopped |
Broken |
BuildFailed |
Building |
Deployed |
Deploying |
DeploymentFailed |
Injecting |
InsufficientCredit |
ManuallyStopped |
StopRequested |
Successful |
Timeout |
| Modifier and Type | Field and Description |
|---|---|
boolean |
running |
boolean |
successful |
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static RunStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RunStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunStatus Building
public static final RunStatus Deploying
public static final RunStatus Deployed
public static final RunStatus Injecting
public static final RunStatus Successful
public static final RunStatus AssertionsSuccessful
public static final RunStatus AutomaticallyStopped
public static final RunStatus ManuallyStopped
public static final RunStatus AssertionsFailed
public static final RunStatus Timeout
public static final RunStatus BuildFailed
public static final RunStatus Broken
public static final RunStatus DeploymentFailed
public static final RunStatus InsufficientCredit
public static final RunStatus StopRequested
public final int value
public final boolean running
public final boolean successful
public static RunStatus[] values()
for (RunStatus c : RunStatus.values()) System.out.println(c);
public static RunStatus 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