public static enum RolloutTask.Action extends Enum<RolloutTask.Action>
| Enum Constant and Description |
|---|
AWAIT_RUNNING |
DEPLOY_NEW_JOB |
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 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 © 2015. All rights reserved.