Enum JdkZlibDecoder.GzipState
- java.lang.Object
-
- java.lang.Enum<JdkZlibDecoder.GzipState>
-
- io.netty.handler.codec.compression.JdkZlibDecoder.GzipState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JdkZlibDecoder.GzipState>
- Enclosing class:
- JdkZlibDecoder
private static enum JdkZlibDecoder.GzipState extends java.lang.Enum<JdkZlibDecoder.GzipState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLG_READ
FOOTER_START
HEADER_END
HEADER_START
PROCESS_FHCRC
SKIP_COMMENT
SKIP_FNAME
XLEN_READ
-
Constructor Summary
Constructors Modifier Constructor Description private
GzipState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JdkZlibDecoder.GzipState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JdkZlibDecoder.GzipState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER_START
public static final JdkZlibDecoder.GzipState HEADER_START
-
HEADER_END
public static final JdkZlibDecoder.GzipState HEADER_END
-
FLG_READ
public static final JdkZlibDecoder.GzipState FLG_READ
-
XLEN_READ
public static final JdkZlibDecoder.GzipState XLEN_READ
-
SKIP_FNAME
public static final JdkZlibDecoder.GzipState SKIP_FNAME
-
SKIP_COMMENT
public static final JdkZlibDecoder.GzipState SKIP_COMMENT
-
PROCESS_FHCRC
public static final JdkZlibDecoder.GzipState PROCESS_FHCRC
-
FOOTER_START
public static final JdkZlibDecoder.GzipState FOOTER_START
-
-
Method Detail
-
values
public static JdkZlibDecoder.GzipState[] 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 (JdkZlibDecoder.GzipState c : JdkZlibDecoder.GzipState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JdkZlibDecoder.GzipState 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
-
-