public enum DeployStatus extends Enum<DeployStatus>
Enum Constant and Description |
---|
FAIL |
FINISH |
PENDING |
RUN |
SKIP |
WAIT |
Modifier and Type | Method and Description |
---|---|
static DeployStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeployStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeployStatus WAIT
public static final DeployStatus RUN
public static final DeployStatus FINISH
public static final DeployStatus FAIL
public static final DeployStatus SKIP
public static final DeployStatus PENDING
public static DeployStatus[] values()
for (DeployStatus c : DeployStatus.values()) System.out.println(c);
public static DeployStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2016. All Rights Reserved.