Enum SpdyFrameDecoder.State
- java.lang.Object
-
- java.lang.Enum<SpdyFrameDecoder.State>
-
- org.jboss.netty.handler.codec.spdy.SpdyFrameDecoder.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpdyFrameDecoder.State>
- Enclosing class:
- SpdyFrameDecoder
private static enum SpdyFrameDecoder.State extends java.lang.Enum<SpdyFrameDecoder.State>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpdyFrameDecoder.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpdyFrameDecoder.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ_COMMON_HEADER
public static final SpdyFrameDecoder.State READ_COMMON_HEADER
-
READ_DATA_FRAME
public static final SpdyFrameDecoder.State READ_DATA_FRAME
-
READ_SYN_STREAM_FRAME
public static final SpdyFrameDecoder.State READ_SYN_STREAM_FRAME
-
READ_SYN_REPLY_FRAME
public static final SpdyFrameDecoder.State READ_SYN_REPLY_FRAME
-
READ_RST_STREAM_FRAME
public static final SpdyFrameDecoder.State READ_RST_STREAM_FRAME
-
READ_SETTINGS_FRAME
public static final SpdyFrameDecoder.State READ_SETTINGS_FRAME
-
READ_SETTING
public static final SpdyFrameDecoder.State READ_SETTING
-
READ_PING_FRAME
public static final SpdyFrameDecoder.State READ_PING_FRAME
-
READ_GOAWAY_FRAME
public static final SpdyFrameDecoder.State READ_GOAWAY_FRAME
-
READ_HEADERS_FRAME
public static final SpdyFrameDecoder.State READ_HEADERS_FRAME
-
READ_WINDOW_UPDATE_FRAME
public static final SpdyFrameDecoder.State READ_WINDOW_UPDATE_FRAME
-
READ_HEADER_BLOCK
public static final SpdyFrameDecoder.State READ_HEADER_BLOCK
-
DISCARD_FRAME
public static final SpdyFrameDecoder.State DISCARD_FRAME
-
FRAME_ERROR
public static final SpdyFrameDecoder.State FRAME_ERROR
-
-
Method Detail
-
values
public static SpdyFrameDecoder.State[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SpdyFrameDecoder.State c : SpdyFrameDecoder.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpdyFrameDecoder.State valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-