public static enum RolloutTask.Action extends Enum<RolloutTask.Action>
| Enum Constant and Description |
|---|
AWAIT_RUNNING |
AWAIT_UNDEPLOYED |
DEPLOY_NEW_JOB |
FORCE_UNDEPLOY_JOBS |
MARK_UNDEPLOYED |
UNDEPLOY_OLD_JOBS |
| Modifier and Type | Method and Description |
|---|---|
static RolloutTask.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RolloutTask.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RolloutTask.Action UNDEPLOY_OLD_JOBS
public static final RolloutTask.Action DEPLOY_NEW_JOB
public static final RolloutTask.Action AWAIT_RUNNING
public static final RolloutTask.Action FORCE_UNDEPLOY_JOBS
public static final RolloutTask.Action AWAIT_UNDEPLOYED
public static final RolloutTask.Action MARK_UNDEPLOYED
public static RolloutTask.Action[] values()
for (RolloutTask.Action c : RolloutTask.Action.values()) System.out.println(c);
public static RolloutTask.Action 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 © 2017. All rights reserved.