Package org.apache.mina.http
Enum DecoderState
- java.lang.Object
-
- java.lang.Enum<DecoderState>
-
- org.apache.mina.http.DecoderState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DecoderState>
public enum DecoderState extends java.lang.Enum<DecoderState>
The HTTP decoder states
-
-
Constructor Summary
Constructors Modifier Constructor Description privateDecoderState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DecoderStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DecoderState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW
public static final DecoderState NEW
waiting for a new HTTP requests, the session is new of last request was completed
-
HEAD
public static final DecoderState HEAD
accumulating the HTTP request head (everything before the body)
-
BODY
public static final DecoderState BODY
receiving HTTP body slices
-
-
Method Detail
-
values
public static DecoderState[] 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 (DecoderState c : DecoderState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DecoderState 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
-
-