public enum DeploymentAction extends java.lang.Enum<DeploymentAction>
Enum Constant and Description |
---|
create |
createAndDeploy |
deploy |
deployAll |
destroy |
destroyAll |
undeploy |
undeployAll |
Modifier and Type | Method and Description |
---|---|
static DeploymentAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentAction create
public static final DeploymentAction createAndDeploy
public static final DeploymentAction deploy
public static final DeploymentAction undeploy
public static final DeploymentAction destroy
public static final DeploymentAction deployAll
public static final DeploymentAction undeployAll
public static final DeploymentAction destroyAll
public static DeploymentAction[] values()
for (DeploymentAction c : DeploymentAction.values()) System.out.println(c);
public static DeploymentAction 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