public static enum DeploymentGroupStatus.State extends Enum<DeploymentGroupStatus.State>
| Enum Constant and Description |
|---|
DONE |
FAILED |
PLANNING_ROLLOUT |
ROLLING_OUT |
START_ROLLING_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static DeploymentGroupStatus.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentGroupStatus.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentGroupStatus.State START_ROLLING_UPDATE
public static final DeploymentGroupStatus.State PLANNING_ROLLOUT
public static final DeploymentGroupStatus.State ROLLING_OUT
public static final DeploymentGroupStatus.State FAILED
public static final DeploymentGroupStatus.State DONE
public static DeploymentGroupStatus.State[] values()
for (DeploymentGroupStatus.State c : DeploymentGroupStatus.State.values()) System.out.println(c);
public static DeploymentGroupStatus.State 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 © 2015. All rights reserved.