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