public static enum WebSocketConnection.ConnectionState extends Enum<WebSocketConnection.ConnectionState>
| Enum Constant and Description |
|---|
CLOSED_ON_ERROR |
CONNECTED |
DELAY_CONNECT |
IDLE |
| Modifier and Type | Method and Description |
|---|---|
static WebSocketConnection.ConnectionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebSocketConnection.ConnectionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebSocketConnection.ConnectionState IDLE
public static final WebSocketConnection.ConnectionState DELAY_CONNECT
public static final WebSocketConnection.ConnectionState CONNECTED
public static final WebSocketConnection.ConnectionState CLOSED_ON_ERROR
public static WebSocketConnection.ConnectionState[] values()
for (WebSocketConnection.ConnectionState c : WebSocketConnection.ConnectionState.values()) System.out.println(c);
public static WebSocketConnection.ConnectionState 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 © 2021. All rights reserved.