Enum Node.Status
- java.lang.Object
-
- java.lang.Enum<Node.Status>
-
- org.jclouds.rackspace.cloudloadbalancers.v1.domain.Node.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<Node.Status>
- Enclosing class:
- Node
public static enum Node.Status extends Enum<Node.Status>
The status is determined by the passive or active health monitors.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRAINING
Represents a node that stops the traffic manager from sending any additional new connections to the node, but honors established sessions.OFFLINE
Represents a node that cannot accept or service traffic.ONLINE
Only nodes that are in an ONLINE status will receive and be able to service traffic from the load balancer.UNRECOGNIZED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Node.Status
fromValue(String status)
static Node.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static Node.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ONLINE
public static final Node.Status ONLINE
Only nodes that are in an ONLINE status will receive and be able to service traffic from the load balancer.
-
OFFLINE
public static final Node.Status OFFLINE
Represents a node that cannot accept or service traffic.
-
DRAINING
public static final Node.Status DRAINING
Represents a node that stops the traffic manager from sending any additional new connections to the node, but honors established sessions.
-
UNRECOGNIZED
public static final Node.Status UNRECOGNIZED
-
-
Method Detail
-
values
public static Node.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Node.Status c : Node.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Node.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromValue
public static Node.Status fromValue(String status)
-
-