@InterfaceAudience.Public @InterfaceStability.Stable public enum CompressionType extends Enum<CompressionType>
Producer.| Enum Constant and Description |
|---|
LZ4
Compress with LZ4 algorithm.
|
NONE
No compression.
|
SNAPPY
Compress with Snappy codec.
|
ZLIB
Compress with ZLib.
|
ZSTD
Compress with Zstandard codec.
|
| Modifier and Type | Method and Description |
|---|---|
static CompressionType |
valueOf(String name)
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.
|
public static final CompressionType NONE
public static final CompressionType LZ4
public static final CompressionType ZLIB
public static final CompressionType ZSTD
public static final CompressionType SNAPPY
public static CompressionType[] values()
for (CompressionType c : CompressionType.values()) System.out.println(c);
public static CompressionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2021 Apache Software Foundation. All rights reserved.