|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Node.Status> org.jclouds.cloudloadbalancers.domain.Node.Status
public static enum Node.Status
The status is determined by the passive or active health monitors.
Enum Constant Summary | |
---|---|
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 | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Node.Status ONLINE
public static final Node.Status OFFLINE
public static final Node.Status DRAINING
public static final Node.Status UNRECOGNIZED
Method Detail |
---|
public static Node.Status[] values()
for (Node.Status c : Node.Status.values()) System.out.println(c);
public static Node.Status valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static Node.Status fromValue(String status)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |