static enum WebSocket08FrameDecoder.State extends java.lang.Enum<WebSocket08FrameDecoder.State>
| Enum Constant and Description |
|---|
CORRUPT |
MASKING_KEY |
PAYLOAD |
READING_FIRST |
READING_SECOND |
READING_SIZE |
| Modifier and Type | Method and Description |
|---|---|
static WebSocket08FrameDecoder.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WebSocket08FrameDecoder.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebSocket08FrameDecoder.State READING_FIRST
public static final WebSocket08FrameDecoder.State READING_SECOND
public static final WebSocket08FrameDecoder.State READING_SIZE
public static final WebSocket08FrameDecoder.State MASKING_KEY
public static final WebSocket08FrameDecoder.State PAYLOAD
public static final WebSocket08FrameDecoder.State CORRUPT
public static WebSocket08FrameDecoder.State[] values()
for (WebSocket08FrameDecoder.State c : WebSocket08FrameDecoder.State.values()) System.out.println(c);
public static WebSocket08FrameDecoder.State 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