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