public static enum Encoding.type extends Enum<Encoding.type>
Enum Constant and Description |
---|
BIT_PACKED |
BYTE_STREAM_SPLIT |
DELTA_BINARY_PACKED |
DELTA_BYTE_ARRAY |
DELTA_LENGTH_BYTE_ARRAY |
PLAIN |
PLAIN_DICTIONARY |
RLE |
RLE_DICTIONARY |
UNDEFINED |
UNKNOWN |
Modifier and Type | Field and Description |
---|---|
int |
value |
Modifier and Type | Method and Description |
---|---|
Encoding.type |
intern() |
String |
toString() |
static Encoding.type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Encoding.type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Encoding.type PLAIN
public static final Encoding.type PLAIN_DICTIONARY
public static final Encoding.type RLE
public static final Encoding.type BIT_PACKED
public static final Encoding.type DELTA_BINARY_PACKED
public static final Encoding.type DELTA_LENGTH_BYTE_ARRAY
public static final Encoding.type DELTA_BYTE_ARRAY
public static final Encoding.type RLE_DICTIONARY
public static final Encoding.type BYTE_STREAM_SPLIT
public static final Encoding.type UNDEFINED
public static final Encoding.type UNKNOWN
public static Encoding.type[] values()
for (Encoding.type c : Encoding.type.values()) System.out.println(c);
public static Encoding.type 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 Encoding.type intern()
public String toString()
toString
in class Enum<Encoding.type>
Copyright © 2022. All rights reserved.