private static enum FastLzFrameDecoder.State extends java.lang.Enum<FastLzFrameDecoder.State>
| Enum Constant and Description |
|---|
CORRUPTED |
DECOMPRESS_DATA |
INIT_BLOCK |
INIT_BLOCK_PARAMS |
| Modifier and Type | Method and 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.
|
public static final FastLzFrameDecoder.State INIT_BLOCK
public static final FastLzFrameDecoder.State INIT_BLOCK_PARAMS
public static final FastLzFrameDecoder.State DECOMPRESS_DATA
public static final FastLzFrameDecoder.State CORRUPTED
public static FastLzFrameDecoder.State[] values()
for (FastLzFrameDecoder.State c : FastLzFrameDecoder.State.values()) System.out.println(c);
public static FastLzFrameDecoder.State valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null