Package org.openspaces.admin.pu
Enum Class DeploymentStatus
- All Implemented Interfaces:
Serializable,Comparable<DeploymentStatus>,java.lang.constant.Constable
Deployment status indicates a
ProcessingUnit deployment.- Author:
- kimchy
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates the Processing Unit is deployed and is broken, where all required services are not availableIndicates the Processing Unit is deployed and is compromised, where some specified services are not availableIndicates the Processing Unit is deployedIndicates the Processing Unit is deployed and is intact, where all specified services are availableDeployment status is not available.Indicates the Processing Unit is scheduled for deploymentIndicates the Processing Unit is not deployed -
Method Summary
Modifier and TypeMethodDescriptionstatic DeploymentStatusReturns the enum constant of this class with the specified name.static DeploymentStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NA
Deployment status is not available. -
UNDEPLOYED
Indicates the Processing Unit is not deployed -
SCHEDULED
Indicates the Processing Unit is scheduled for deployment -
DEPLOYED
Indicates the Processing Unit is deployed -
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 -
INTACT
Indicates the Processing Unit is deployed and is intact, where all specified services are available
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-