Enum BlockLZ4CompressorInputStream.State
- java.lang.Object
-
- java.lang.Enum<BlockLZ4CompressorInputStream.State>
-
- org.apache.commons.compress.compressors.lz4.BlockLZ4CompressorInputStream.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BlockLZ4CompressorInputStream.State>
- Enclosing class:
- BlockLZ4CompressorInputStream
private static enum BlockLZ4CompressorInputStream.State extends java.lang.Enum<BlockLZ4CompressorInputStream.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EOF
IN_BACK_REFERENCE
IN_LITERAL
LOOKING_FOR_BACK_REFERENCE
NO_BLOCK
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BlockLZ4CompressorInputStream.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BlockLZ4CompressorInputStream.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_BLOCK
public static final BlockLZ4CompressorInputStream.State NO_BLOCK
-
IN_LITERAL
public static final BlockLZ4CompressorInputStream.State IN_LITERAL
-
LOOKING_FOR_BACK_REFERENCE
public static final BlockLZ4CompressorInputStream.State LOOKING_FOR_BACK_REFERENCE
-
IN_BACK_REFERENCE
public static final BlockLZ4CompressorInputStream.State IN_BACK_REFERENCE
-
EOF
public static final BlockLZ4CompressorInputStream.State EOF
-
-
Method Detail
-
values
public static BlockLZ4CompressorInputStream.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 (BlockLZ4CompressorInputStream.State c : BlockLZ4CompressorInputStream.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 BlockLZ4CompressorInputStream.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
-
-