Enum CompressionType

java.lang.Object
java.lang.Enum<CompressionType>
ai.rapids.cudf.CompressionType
All Implemented Interfaces:
Serializable, Comparable<CompressionType>, java.lang.constant.Constable

public enum CompressionType extends Enum<CompressionType>
Enumeration of compression formats.
  • Enum Constant Details

    • NONE

      public static final CompressionType NONE
      No compression
    • AUTO

      public static final CompressionType AUTO
      Automatically detect or select the compression codec
    • SNAPPY

      public static final CompressionType SNAPPY
      Snappy format using byte-oriented LZ77
    • GZIP

      public static final CompressionType GZIP
      GZIP format using the DEFLATE algorithm
    • BZIP2

      public static final CompressionType BZIP2
      BZIP2 format using Burrows-Wheeler transform
    • BROTLI

      public static final CompressionType BROTLI
      BROTLI format using LZ77 + Huffman + 2nd order context modeling
    • ZIP

      public static final CompressionType ZIP
      ZIP format using DEFLATE algorithm
    • XZ

      public static final CompressionType XZ
      XZ format using LZMA(2) algorithm
    • ZLIB

      public static final CompressionType ZLIB
      ZLIB format, using DEFLATE algorithm
    • LZ4

      public static final CompressionType LZ4
      LZ4 format, using LZ77
    • LZO

      public static final CompressionType LZO
      Lempel–Ziv–Oberhumer format
    • ZSTD

      public static final CompressionType ZSTD
      Zstandard format
  • Method Details

    • values

      public static CompressionType[] 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

      public static CompressionType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null