public static enum WebSocket08FrameDecoder.State extends Enum<WebSocket08FrameDecoder.State>
Enum Constant and Description |
---|
CORRUPT |
FRAME_START |
MASKING_KEY |
PAYLOAD |
Modifier and Type | Method and Description |
---|---|
static WebSocket08FrameDecoder.State |
valueOf(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 FRAME_START
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(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 © 2008-2014 The Netty Project. All Rights Reserved.