Enum Class Node.Status
- All Implemented Interfaces:
Serializable
,Comparable<Node.Status>
,java.lang.constant.Constable
- Enclosing class:
Node
The status is determined by the passive or active health monitors.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents a node that stops the traffic manager from sending any additional new connections to the node, but honors established sessions.Represents a node that cannot accept or service traffic.Only nodes that are in an ONLINE status will receive and be able to service traffic from the load balancer. -
Method Summary
Modifier and TypeMethodDescriptionstatic Node.Status
static Node.Status
Returns the enum constant of this class with the specified name.static Node.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ONLINE
Only nodes that are in an ONLINE status will receive and be able to service traffic from the load balancer. -
OFFLINE
Represents a node that cannot accept or service traffic. -
DRAINING
Represents a node that stops the traffic manager from sending any additional new connections to the node, but honors established sessions. -
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
-