public enum GridClientPacketType extends Enum<GridClientPacketType>
| Enum Constant and Description |
|---|
GRIDGAIN
GridGain message.
|
GRIDGAIN_HANDSHAKE
GridGain handshake.
|
MEMCACHE
Memcache protocol message.
|
| Modifier and Type | Method and Description |
|---|---|
static GridClientPacketType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridClientPacketType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridClientPacketType MEMCACHE
public static final GridClientPacketType GRIDGAIN_HANDSHAKE
public static final GridClientPacketType GRIDGAIN
public static GridClientPacketType[] values()
for (GridClientPacketType c : GridClientPacketType.values()) System.out.println(c);
public static GridClientPacketType 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 © 2014. All rights reserved.