Package org.apache.hadoop.io.compress
Enum Class SplittableCompressionCodec.READ_MODE
java.lang.Object
java.lang.Enum<SplittableCompressionCodec.READ_MODE>
org.apache.hadoop.io.compress.SplittableCompressionCodec.READ_MODE
- All Implemented Interfaces:
Serializable,Comparable<SplittableCompressionCodec.READ_MODE>,Constable
- Enclosing interface:
- SplittableCompressionCodec
public static enum SplittableCompressionCodec.READ_MODE
extends Enum<SplittableCompressionCodec.READ_MODE>
During decompression, data can be read off from the decompressor in two
modes, namely continuous and blocked. Few codecs (e.g. BZip2) are capable
of compressing data in blocks and then decompressing the blocks. In
Blocked reading mode codecs inform 'end of block' events to its caller.
While in continuous mode, the caller of codecs is unaware about the blocks
and uncompressed data is spilled out like a continuous stream.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static SplittableCompressionCodec.READ_MODE[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTINUOUS
-
BYBLOCK
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-