public enum GridIpcEndpointType extends Enum<GridIpcEndpointType>
| Enum Constant and Description |
|---|
SHARED_MEMORY
Shared memory region.
|
TCP_LOOPBACK
TCP loopback socket.
|
| Modifier and Type | Method and Description |
|---|---|
static GridIpcEndpointType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridIpcEndpointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridIpcEndpointType TCP_LOOPBACK
public static final GridIpcEndpointType SHARED_MEMORY
public static GridIpcEndpointType[] values()
for (GridIpcEndpointType c : GridIpcEndpointType.values()) System.out.println(c);
public static GridIpcEndpointType 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.