Enum Class BaseNode.Condition
java.lang.Object
java.lang.Enum<BaseNode.Condition>
org.jclouds.rackspace.cloudloadbalancers.v1.domain.internal.BaseNode.Condition
- All Implemented Interfaces:
Serializable
,Comparable<BaseNode.Condition>
,java.lang.constant.Constable
Virtual IP Conditions
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNode is not permitted to accept any new connections regardless of session persistence configuration.Node is allowed to service existing established connections and connections that are being directed to it as a result of the session persistence configuration.Node is permitted to accept new connections. -
Method Summary
Modifier and TypeMethodDescriptionstatic BaseNode.Condition
static BaseNode.Condition
Returns the enum constant of this class with the specified name.static BaseNode.Condition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ENABLED
Node is permitted to accept new connections. -
DISABLED
Node is not permitted to accept any new connections regardless of session persistence configuration. Existing connections are forcibly terminated. -
DRAINING
Node is allowed to service existing established connections and connections that are being directed to it as a result of the session persistence configuration. -
UNRECOGNIZED
-
-
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
-
fromValue
-