Package io.trino.orc.metadata
Enum Stream.StreamKind
- java.lang.Object
-
- java.lang.Enum<Stream.StreamKind>
-
- io.trino.orc.metadata.Stream.StreamKind
-
- All Implemented Interfaces:
Serializable,Comparable<Stream.StreamKind>
- Enclosing class:
- Stream
public static enum Stream.StreamKind extends Enum<Stream.StreamKind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOOM_FILTERBLOOM_FILTER_UTF8DATADICTIONARY_COUNTDICTIONARY_DATALENGTHPRESENTROW_INDEXSECONDARY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Stream.StreamKindvalueOf(String name)Returns the enum constant of this type with the specified name.static Stream.StreamKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRESENT
public static final Stream.StreamKind PRESENT
-
DATA
public static final Stream.StreamKind DATA
-
LENGTH
public static final Stream.StreamKind LENGTH
-
DICTIONARY_DATA
public static final Stream.StreamKind DICTIONARY_DATA
-
DICTIONARY_COUNT
public static final Stream.StreamKind DICTIONARY_COUNT
-
SECONDARY
public static final Stream.StreamKind SECONDARY
-
ROW_INDEX
public static final Stream.StreamKind ROW_INDEX
-
BLOOM_FILTER
public static final Stream.StreamKind BLOOM_FILTER
-
BLOOM_FILTER_UTF8
public static final Stream.StreamKind BLOOM_FILTER_UTF8
-
-
Method Detail
-
values
public static Stream.StreamKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Stream.StreamKind c : Stream.StreamKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Stream.StreamKind 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 nameNullPointerException- if the argument is null
-
-