Package org.eclipse.jetty.http
Enum GZIPContentDecoder.State
- java.lang.Object
-
- java.lang.Enum<GZIPContentDecoder.State>
-
- org.eclipse.jetty.http.GZIPContentDecoder.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GZIPContentDecoder.State>
- Enclosing class:
- GZIPContentDecoder
private static enum GZIPContentDecoder.State extends java.lang.Enum<GZIPContentDecoder.State>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GZIPContentDecoder.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GZIPContentDecoder.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIAL
public static final GZIPContentDecoder.State INITIAL
-
ID
public static final GZIPContentDecoder.State ID
-
CM
public static final GZIPContentDecoder.State CM
-
FLG
public static final GZIPContentDecoder.State FLG
-
MTIME
public static final GZIPContentDecoder.State MTIME
-
XFL
public static final GZIPContentDecoder.State XFL
-
OS
public static final GZIPContentDecoder.State OS
-
FLAGS
public static final GZIPContentDecoder.State FLAGS
-
EXTRA_LENGTH
public static final GZIPContentDecoder.State EXTRA_LENGTH
-
EXTRA
public static final GZIPContentDecoder.State EXTRA
-
NAME
public static final GZIPContentDecoder.State NAME
-
COMMENT
public static final GZIPContentDecoder.State COMMENT
-
HCRC
public static final GZIPContentDecoder.State HCRC
-
DATA
public static final GZIPContentDecoder.State DATA
-
CRC
public static final GZIPContentDecoder.State CRC
-
ISIZE
public static final GZIPContentDecoder.State ISIZE
-
-
Method Detail
-
values
public static GZIPContentDecoder.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 (GZIPContentDecoder.State c : GZIPContentDecoder.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 GZIPContentDecoder.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
-
-