public enum DrSenderConnectionState extends Enum<DrSenderConnectionState>
Enum Constant and Description |
---|
CONNECTED
Connection established and remote data center available.
|
DISCONNECTED
Connection not yet established or broken, which means that remote data center is not available.
|
Modifier and Type | Method and Description |
---|---|
static DrSenderConnectionState |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static DrSenderConnectionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DrSenderConnectionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrSenderConnectionState CONNECTED
public static final DrSenderConnectionState DISCONNECTED
public static DrSenderConnectionState[] values()
for (DrSenderConnectionState c : DrSenderConnectionState.values()) System.out.println(c);
public static DrSenderConnectionState 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 nullpublic static DrSenderConnectionState fromOrdinal(int ord)
ord
- Ordinal value.null
if ordinal out of range.
GridGain In-Memory Computing Platform : ver. 8.9.14 Release Date : November 5 2024