Enum LZ77Compressor.Block.BlockType
- java.lang.Object
-
- java.lang.Enum<LZ77Compressor.Block.BlockType>
-
- org.apache.commons.compress.compressors.lz77support.LZ77Compressor.Block.BlockType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LZ77Compressor.Block.BlockType>
- Enclosing class:
- LZ77Compressor.Block
public static enum LZ77Compressor.Block.BlockType extends java.lang.Enum<LZ77Compressor.Block.BlockType>
Enumerates the block types the compressor emits.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACK_REFERENCEThe back-reference block type.EODThe end-of-data block type.LITERALThe literal block type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LZ77Compressor.Block.BlockTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LZ77Compressor.Block.BlockType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LITERAL
public static final LZ77Compressor.Block.BlockType LITERAL
The literal block type.
-
BACK_REFERENCE
public static final LZ77Compressor.Block.BlockType BACK_REFERENCE
The back-reference block type.
-
EOD
public static final LZ77Compressor.Block.BlockType EOD
The end-of-data block type.
-
-
Method Detail
-
values
public static LZ77Compressor.Block.BlockType[] 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 (LZ77Compressor.Block.BlockType c : LZ77Compressor.Block.BlockType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LZ77Compressor.Block.BlockType 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
-
-