public static enum RemoteSession.DistributedMapKey extends java.lang.Enum<RemoteSession.DistributedMapKey> implements java.io.Serializable
| Enum Constant and Description | 
|---|
| CONNECTION_IDCluster connection Id. | 
| MAX_BINARY_MESSAGE_BUFFER_SIZEMax binary buffer size. | 
| MAX_IDLE_TIMEOUTMax idle timeout. | 
| MAX_TEXT_MESSAGE_BUFFER_SIZEMax text buffer size. | 
| NEGOTIATED_EXTENSIONSNegotiated extensions. | 
| NEGOTIATED_SUBPROTOCOLNegotiated subprotocol. | 
| PATH_PARAMETERSPath parameters. | 
| QUERY_STRINGQuery string. | 
| REQUEST_PARAMETER_MAPRequest Parameter map. | 
| REQUEST_URIRequest URI. | 
| SECURESecure flag. | 
| USER_PRINCIPALUser principal. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | toString() | 
| static RemoteSession.DistributedMapKey | valueOf(java.lang.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
 Value must be String.
Session.getNegotiatedSubprotocol()public static final RemoteSession.DistributedMapKey NEGOTIATED_EXTENSIONS
 Value must be List<Extension>.
Session.getNegotiatedExtensions()public static final RemoteSession.DistributedMapKey SECURE
 Value must be boolean or Boolean.
Session.isSecure()public static final RemoteSession.DistributedMapKey MAX_IDLE_TIMEOUT
 Value must be long or Long.
Session.getMaxIdleTimeout()public static final RemoteSession.DistributedMapKey MAX_BINARY_MESSAGE_BUFFER_SIZE
 Value must be int or Integer.
Session.getMaxBinaryMessageBufferSize()public static final RemoteSession.DistributedMapKey MAX_TEXT_MESSAGE_BUFFER_SIZE
 Value must be int or Integer.
Session.getMaxTextMessageBufferSize()public static final RemoteSession.DistributedMapKey REQUEST_URI
 Value must be URI.
Session.getRequestURI()public static final RemoteSession.DistributedMapKey REQUEST_PARAMETER_MAP
 Value must be Map<String, List<String>>.
Session.getRequestParameterMap()public static final RemoteSession.DistributedMapKey QUERY_STRING
 Value must be String.
Session.getQueryString()public static final RemoteSession.DistributedMapKey PATH_PARAMETERS
 Value must be Map<String, String>.
Session.getPathParameters()public static final RemoteSession.DistributedMapKey USER_PRINCIPAL
 Value must be Principal.
Session.getUserPrincipal()public static final RemoteSession.DistributedMapKey CONNECTION_ID
 Value must be String.
public static RemoteSession.DistributedMapKey[] values()
for (RemoteSession.DistributedMapKey c : RemoteSession.DistributedMapKey.values()) System.out.println(c);
public static RemoteSession.DistributedMapKey valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<RemoteSession.DistributedMapKey>Copyright © 2012–2020 Oracle Corporation. All rights reserved.