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