public enum CompressionType extends Enum<CompressionType>
| Modifier and Type | Field and Description |
|---|---|
static int |
LZ4_VALUE |
static int |
NONE_VALUE |
static int |
SNAPPY_VALUE |
static int |
ZLIB_VALUE |
static int |
ZSTD_VALUE |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static CompressionType |
valueOf(int n) |
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 final int NONE_VALUE
public static final int LZ4_VALUE
public static final int ZLIB_VALUE
public static final int ZSTD_VALUE
public static final int SNAPPY_VALUE
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 nullpublic int getValue()
public static CompressionType valueOf(int n)
Copyright © 2017–2022 Apache Software Foundation. All rights reserved.