Package ai.rapids.cudf
Enum CompressionType
- All Implemented Interfaces:
Serializable
,Comparable<CompressionType>
,java.lang.constant.Constable
Enumeration of compression formats.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAutomatically detect or select the compression codecBROTLI format using LZ77 + Huffman + 2nd order context modelingBZIP2 format using Burrows-Wheeler transformGZIP format using the DEFLATE algorithmLZ4 format, using LZ77Lempel–Ziv–Oberhumer formatNo compressionSnappy format using byte-oriented LZ77XZ format using LZMA(2) algorithmZIP format using DEFLATE algorithmZLIB format, using DEFLATE algorithmZstandard format -
Method Summary
Modifier and TypeMethodDescriptionstatic CompressionType
Returns the enum constant of this type with the specified name.static CompressionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
No compression -
AUTO
Automatically detect or select the compression codec -
SNAPPY
Snappy format using byte-oriented LZ77 -
GZIP
GZIP format using the DEFLATE algorithm -
BZIP2
BZIP2 format using Burrows-Wheeler transform -
BROTLI
BROTLI format using LZ77 + Huffman + 2nd order context modeling -
ZIP
ZIP format using DEFLATE algorithm -
XZ
XZ format using LZMA(2) algorithm -
ZLIB
ZLIB format, using DEFLATE algorithm -
LZ4
LZ4 format, using LZ77 -
LZO
Lempel–Ziv–Oberhumer format -
ZSTD
Zstandard format
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-