Package io.trino.orc.proto
Interface OrcProto.ColumnEncodingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OrcProto.ColumnEncoding,OrcProto.ColumnEncoding.Builder
- Enclosing class:
- OrcProto
public static interface OrcProto.ColumnEncodingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBloomEncoding()The encoding of the bloom filters for this column: 0 or missing = none or original 1 = ORC-135 (utc for timestamps)intgetDictionarySize()optional uint32 dictionarySize = 2;OrcProto.ColumnEncoding.KindgetKind()optional .orc.proto.ColumnEncoding.Kind kind = 1;booleanhasBloomEncoding()The encoding of the bloom filters for this column: 0 or missing = none or original 1 = ORC-135 (utc for timestamps)booleanhasDictionarySize()optional uint32 dictionarySize = 2;booleanhasKind()optional .orc.proto.ColumnEncoding.Kind kind = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasKind
boolean hasKind()
optional .orc.proto.ColumnEncoding.Kind kind = 1;- Returns:
- Whether the kind field is set.
-
getKind
OrcProto.ColumnEncoding.Kind getKind()
optional .orc.proto.ColumnEncoding.Kind kind = 1;- Returns:
- The kind.
-
hasDictionarySize
boolean hasDictionarySize()
optional uint32 dictionarySize = 2;- Returns:
- Whether the dictionarySize field is set.
-
getDictionarySize
int getDictionarySize()
optional uint32 dictionarySize = 2;- Returns:
- The dictionarySize.
-
hasBloomEncoding
boolean hasBloomEncoding()
The encoding of the bloom filters for this column: 0 or missing = none or original 1 = ORC-135 (utc for timestamps)
optional uint32 bloomEncoding = 3;- Returns:
- Whether the bloomEncoding field is set.
-
getBloomEncoding
int getBloomEncoding()
The encoding of the bloom filters for this column: 0 or missing = none or original 1 = ORC-135 (utc for timestamps)
optional uint32 bloomEncoding = 3;- Returns:
- The bloomEncoding.
-
-