public enum DeploymentStatus extends java.lang.Enum<DeploymentStatus>
| Enum Constant and Description |
|---|
CREATING |
DELETING |
FAILED |
IN_SERVICE |
OUT_OF_SERVICE |
ROLLING_BACK |
UNKNOWN |
UPDATING |
| Modifier and Type | Method and Description |
|---|---|
static DeploymentStatus |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
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 OUT_OF_SERVICE
public static final DeploymentStatus CREATING
public static final DeploymentStatus UPDATING
public static final DeploymentStatus ROLLING_BACK
public static final DeploymentStatus IN_SERVICE
public static final DeploymentStatus DELETING
public static final DeploymentStatus FAILED
public static final DeploymentStatus UNKNOWN
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 toString()
toString in class java.lang.Enum<DeploymentStatus>public static DeploymentStatus fromValue(java.lang.String text)