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