public enum RESTDeploymentState extends java.lang.Enum<RESTDeploymentState>
Enum Constant and Description |
---|
deployed
All expected modules for the deployment unit have been deployed.
|
deploying
One or more of the deployment unit modules are being deployed.
|
failed
Some or all of the expected modules for the deployment unit
have failed to deploy; the deployment unit is not considered functional.
|
incomplete
Some expected modules for the deployment unit have not been
deployed; however the deployment unit is considered functional.
|
undeployed
The deployment unit is not deployed.
|
undeploying
The deployment unit is in the process of being undeployed.
|
Modifier and Type | Method and Description |
---|---|
static RESTDeploymentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RESTDeploymentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RESTDeploymentState undeployed
public static final RESTDeploymentState deploying
public static final RESTDeploymentState deployed
public static final RESTDeploymentState incomplete
public static final RESTDeploymentState failed
public static final RESTDeploymentState undeploying
public static RESTDeploymentState[] values()
for (RESTDeploymentState c : RESTDeploymentState.values()) System.out.println(c);
public static RESTDeploymentState 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