public static enum WebSocketEvent.Type extends java.lang.Enum<WebSocketEvent.Type>
Enum Constant and Description |
---|
BINARY |
CLOSE |
OPEN |
PONG |
SENDREADY |
TEXT |
Modifier and Type | Method and Description |
---|---|
static WebSocketEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WebSocketEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebSocketEvent.Type OPEN
public static final WebSocketEvent.Type CLOSE
public static final WebSocketEvent.Type TEXT
public static final WebSocketEvent.Type BINARY
public static final WebSocketEvent.Type PONG
public static final WebSocketEvent.Type SENDREADY
public static WebSocketEvent.Type[] values()
for (WebSocketEvent.Type c : WebSocketEvent.Type.values()) System.out.println(c);
public static WebSocketEvent.Type 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 null