public enum ConnectivityStatus extends java.lang.Enum<ConnectivityStatus>
Enum Constant | Description |
---|---|
CacheStoped |
If cache node is stop then Connectivity status will be set to CacheStoped.
|
FullyConnected |
If Cache is fully connected then connectivity status is FullyConnected.
|
PartialConnected |
If Cache is partially connected then connectivity status is PartialConnected.
|
Running |
If Cache node is running then connectivity status will be set to Running.
|
Modifier and Type | Method | Description |
---|---|---|
static ConnectivityStatus |
forValue(int value) |
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static ConnectivityStatus |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ConnectivityStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectivityStatus CacheStoped
public static final ConnectivityStatus Running
public static final ConnectivityStatus FullyConnected
public static final ConnectivityStatus PartialConnected
public static ConnectivityStatus[] values()
for (ConnectivityStatus c : ConnectivityStatus.values()) System.out.println(c);
public static ConnectivityStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ConnectivityStatus forValue(int value)
public int getValue()