public enum Transport extends Enum<Transport>
| Enum Constant and Description |
|---|
LONG_POLLING
HTTP long polling.
|
WEBSOCKET
Websocket.
|
WEBSOCKET_XHR
Websocket for server to client, XHR for client to server.
|
| Modifier and Type | Method and Description |
|---|---|
static Transport |
getByIdentifier(String identifier)
Returns a Transport by its identifier.
|
String |
getIdentifier()
Gets the low level identifier for the transport.
|
static Transport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transport WEBSOCKET
public static final Transport WEBSOCKET_XHR
public static final Transport LONG_POLLING
public static Transport[] values()
for (Transport c : Transport.values()) System.out.println(c);
public static Transport 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 getIdentifier()
public static Transport getByIdentifier(String identifier)
identifier - the transport identifier, as returned by
getIdentifier()null if no
matching transport was foundCopyright © 2025. All rights reserved.