Enum FastLzFrameDecoder.State
- java.lang.Object
-
- java.lang.Enum<FastLzFrameDecoder.State>
-
- io.netty.handler.codec.compression.FastLzFrameDecoder.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FastLzFrameDecoder.State>
- Enclosing class:
- FastLzFrameDecoder
private static enum FastLzFrameDecoder.State extends java.lang.Enum<FastLzFrameDecoder.State>
Current state of decompression.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CORRUPTED
DECOMPRESS_DATA
INIT_BLOCK
INIT_BLOCK_PARAMS
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FastLzFrameDecoder.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FastLzFrameDecoder.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INIT_BLOCK
public static final FastLzFrameDecoder.State INIT_BLOCK
-
INIT_BLOCK_PARAMS
public static final FastLzFrameDecoder.State INIT_BLOCK_PARAMS
-
DECOMPRESS_DATA
public static final FastLzFrameDecoder.State DECOMPRESS_DATA
-
CORRUPTED
public static final FastLzFrameDecoder.State CORRUPTED
-
-
Method Detail
-
values
public static FastLzFrameDecoder.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 (FastLzFrameDecoder.State c : FastLzFrameDecoder.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 FastLzFrameDecoder.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
-
-