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