public static enum ClusterStatusReport.ConnectivityStatus extends Enum<ClusterStatusReport.ConnectivityStatus>
Enum Constant and Description |
---|
RESPONSIVE
The node responds to pings from client.
|
UNRESPONSIVE
The node does not respond to pings from client.
|
Modifier and Type | Method and Description |
---|---|
static ClusterStatusReport.ConnectivityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClusterStatusReport.ConnectivityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusterStatusReport.ConnectivityStatus RESPONSIVE
public static final ClusterStatusReport.ConnectivityStatus UNRESPONSIVE
public static ClusterStatusReport.ConnectivityStatus[] values()
for (ClusterStatusReport.ConnectivityStatus c : ClusterStatusReport.ConnectivityStatus.values()) System.out.println(c);
public static ClusterStatusReport.ConnectivityStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 CorfuDB. All rights reserved.