private static enum HttpObjectDecoder.State extends java.lang.Enum<HttpObjectDecoder.State>
HttpObjectDecoder
.
Internal use only.Enum Constant and Description |
---|
BAD_MESSAGE |
READ_CHUNK_DELIMITER |
READ_CHUNK_FOOTER |
READ_CHUNK_SIZE |
READ_CHUNKED_CONTENT |
READ_FIXED_LENGTH_CONTENT |
READ_HEADER |
READ_INITIAL |
READ_VARIABLE_LENGTH_CONTENT |
SKIP_CONTROL_CHARS |
UPGRADED |
Modifier and Type | Method and Description |
---|---|
static HttpObjectDecoder.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpObjectDecoder.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpObjectDecoder.State SKIP_CONTROL_CHARS
public static final HttpObjectDecoder.State READ_INITIAL
public static final HttpObjectDecoder.State READ_HEADER
public static final HttpObjectDecoder.State READ_VARIABLE_LENGTH_CONTENT
public static final HttpObjectDecoder.State READ_FIXED_LENGTH_CONTENT
public static final HttpObjectDecoder.State READ_CHUNK_SIZE
public static final HttpObjectDecoder.State READ_CHUNKED_CONTENT
public static final HttpObjectDecoder.State READ_CHUNK_DELIMITER
public static final HttpObjectDecoder.State READ_CHUNK_FOOTER
public static final HttpObjectDecoder.State BAD_MESSAGE
public static final HttpObjectDecoder.State UPGRADED
public static HttpObjectDecoder.State[] values()
for (HttpObjectDecoder.State c : HttpObjectDecoder.State.values()) System.out.println(c);
public static HttpObjectDecoder.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