private static enum Bzip2Decoder.State extends java.lang.Enum<Bzip2Decoder.State>
Enum Constant and Description |
---|
DECODE_HUFFMAN_DATA |
EOF |
INIT |
INIT_BLOCK |
INIT_BLOCK_PARAMS |
RECEIVE_HUFFMAN_LENGTH |
RECEIVE_HUFFMAN_USED_BITMAPS |
RECEIVE_HUFFMAN_USED_MAP |
RECEIVE_SELECTORS |
RECEIVE_SELECTORS_NUMBER |
Modifier and Type | Method and Description |
---|---|
static Bzip2Decoder.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Bzip2Decoder.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bzip2Decoder.State INIT
public static final Bzip2Decoder.State INIT_BLOCK
public static final Bzip2Decoder.State INIT_BLOCK_PARAMS
public static final Bzip2Decoder.State RECEIVE_HUFFMAN_USED_MAP
public static final Bzip2Decoder.State RECEIVE_HUFFMAN_USED_BITMAPS
public static final Bzip2Decoder.State RECEIVE_SELECTORS_NUMBER
public static final Bzip2Decoder.State RECEIVE_SELECTORS
public static final Bzip2Decoder.State RECEIVE_HUFFMAN_LENGTH
public static final Bzip2Decoder.State DECODE_HUFFMAN_DATA
public static final Bzip2Decoder.State EOF
public static Bzip2Decoder.State[] values()
for (Bzip2Decoder.State c : Bzip2Decoder.State.values()) System.out.println(c);
public static Bzip2Decoder.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