public enum Transport extends Enum<Transport>
Enum Constant and Description |
---|
LONG_POLLING
HTTP long polling.
|
STREAMING
Deprecated.
Use the more reliable
LONG_POLLING instead. |
WEBSOCKET
Websockets.
|
WEBSOCKET_XHR
Websockets 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() |
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
@Deprecated public static final Transport STREAMING
LONG_POLLING
instead.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()
Copyright © 2018 Vaadin Ltd. All rights reserved.