public enum DeploymentStatus extends Enum<DeploymentStatus>
ProcessingUnit
deployment.Enum Constant and Description |
---|
BROKEN
Indicates the Processing Unit is deployed and is broken, where all required services are not
available
|
COMPROMISED
Indicates the Processing Unit is deployed and is compromised, where some specified services
are not available
|
DEPLOYED
Indicates the Processing Unit is deployed
|
INTACT
Indicates the Processing Unit is deployed and is intact, where all specified services are
available
|
NA
Deployment status is not available.
|
SCHEDULED
Indicates the Processing Unit is scheduled for deployment
|
UNDEPLOYED
Indicates the Processing Unit is not deployed
|
Modifier and Type | Method and Description |
---|---|
static DeploymentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentStatus NA
public static final DeploymentStatus UNDEPLOYED
public static final DeploymentStatus SCHEDULED
public static final DeploymentStatus DEPLOYED
public static final DeploymentStatus BROKEN
public static final DeploymentStatus COMPROMISED
public static final DeploymentStatus INTACT
public static DeploymentStatus[] values()
for (DeploymentStatus c : DeploymentStatus.values()) System.out.println(c);
public static DeploymentStatus 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 © GigaSpaces.