public enum OSSFileEncoding extends Enum<OSSFileEncoding>
| Enum Constant and Description |
|---|
DELTA_BINARY_PACKED |
DELTA_BYTE_ARRAY |
DELTA_LENGTH_BYTE_ARRAY |
PLAIN |
PLAIN_DICTIONARY |
| Modifier and Type | Method and Description |
|---|---|
static OSSFileEncoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OSSFileEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OSSFileEncoding PLAIN
public static final OSSFileEncoding PLAIN_DICTIONARY
public static final OSSFileEncoding DELTA_BINARY_PACKED
public static final OSSFileEncoding DELTA_BYTE_ARRAY
public static final OSSFileEncoding DELTA_LENGTH_BYTE_ARRAY
public static OSSFileEncoding[] values()
for (OSSFileEncoding c : OSSFileEncoding.values()) System.out.println(c);
public static OSSFileEncoding 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 © 2024. All Rights Reserved.