public static enum WebSocketParserD06.State extends Enum<WebSocketParserD06.State>
| Enum Constant and Description |
|---|
DATA |
LENGTH_16 |
LENGTH_63 |
LENGTH_7 |
MASK |
OPCODE |
SKIP |
START |
| Modifier and Type | Method and Description |
|---|---|
static WebSocketParserD06.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebSocketParserD06.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebSocketParserD06.State START
public static final WebSocketParserD06.State MASK
public static final WebSocketParserD06.State OPCODE
public static final WebSocketParserD06.State LENGTH_7
public static final WebSocketParserD06.State LENGTH_16
public static final WebSocketParserD06.State LENGTH_63
public static final WebSocketParserD06.State DATA
public static final WebSocketParserD06.State SKIP
public static WebSocketParserD06.State[] values()
for (WebSocketParserD06.State c : WebSocketParserD06.State.values()) System.out.println(c);
public static WebSocketParserD06.State 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 © 1995-2015 Mort Bay Consulting. All Rights Reserved.