public static enum RemoteSession.DistributedMapKey extends Enum<RemoteSession.DistributedMapKey> implements Serializable
Enum Constant and Description |
---|
CONNECTION_ID
Cluster connection Id.
|
MAX_BINARY_MESSAGE_BUFFER_SIZE
Max binary buffer size.
|
MAX_IDLE_TIMEOUT
Max idle timeout.
|
MAX_TEXT_MESSAGE_BUFFER_SIZE
Max text buffer size.
|
NEGOTIATED_EXTENSIONS
Negotiated extensions.
|
NEGOTIATED_SUBPROTOCOL
Negotiated subprotocol.
|
PATH_PARAMETERS
Path parameters.
|
QUERY_STRING
Query string.
|
REQUEST_PARAMETER_MAP
Request Parameter map.
|
REQUEST_URI
Request URI.
|
SECURE
Secure flag.
|
USER_PRINCIPAL
User principal.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static RemoteSession.DistributedMapKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteSession.DistributedMapKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteSession.DistributedMapKey NEGOTIATED_SUBPROTOCOL
String
.Session.getNegotiatedSubprotocol()
public static final RemoteSession.DistributedMapKey NEGOTIATED_EXTENSIONS
List
<Extension
>.Session.getNegotiatedExtensions()
public static final RemoteSession.DistributedMapKey SECURE
boolean
or Boolean
.Session.isSecure()
public static final RemoteSession.DistributedMapKey MAX_IDLE_TIMEOUT
long
or Long
.Session.getMaxIdleTimeout()
public static final RemoteSession.DistributedMapKey MAX_BINARY_MESSAGE_BUFFER_SIZE
int
or Integer
.Session.getMaxBinaryMessageBufferSize()
public static final RemoteSession.DistributedMapKey MAX_TEXT_MESSAGE_BUFFER_SIZE
int
or Integer
.Session.getMaxTextMessageBufferSize()
public static final RemoteSession.DistributedMapKey REQUEST_URI
URI
.Session.getRequestURI()
public static final RemoteSession.DistributedMapKey REQUEST_PARAMETER_MAP
Session.getRequestParameterMap()
public static final RemoteSession.DistributedMapKey QUERY_STRING
String
.Session.getQueryString()
public static final RemoteSession.DistributedMapKey PATH_PARAMETERS
Session.getPathParameters()
public static final RemoteSession.DistributedMapKey USER_PRINCIPAL
Principal
.Session.getUserPrincipal()
public static final RemoteSession.DistributedMapKey CONNECTION_ID
String
.public static RemoteSession.DistributedMapKey[] values()
for (RemoteSession.DistributedMapKey c : RemoteSession.DistributedMapKey.values()) System.out.println(c);
public static RemoteSession.DistributedMapKey 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 String toString()
toString
in class Enum<RemoteSession.DistributedMapKey>
Copyright © 2012-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.