Package io.trino.orc.proto
Interface OrcProto.StringStatisticsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OrcProto.StringStatistics,OrcProto.StringStatistics.Builder
- Enclosing class:
- OrcProto
public static interface OrcProto.StringStatisticsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLowerBound()If the minimum or maximum value was longer than 1024 bytes, store a lower or upper bound instead of the minimum or maximum values above.com.google.protobuf.ByteStringgetLowerBoundBytes()If the minimum or maximum value was longer than 1024 bytes, store a lower or upper bound instead of the minimum or maximum values above.StringgetMaximum()optional string maximum = 2;com.google.protobuf.ByteStringgetMaximumBytes()optional string maximum = 2;StringgetMinimum()optional string minimum = 1;com.google.protobuf.ByteStringgetMinimumBytes()optional string minimum = 1;longgetSum()sum will store the total length of all strings in a stripeStringgetUpperBound()optional string upperBound = 5;com.google.protobuf.ByteStringgetUpperBoundBytes()optional string upperBound = 5;booleanhasLowerBound()If the minimum or maximum value was longer than 1024 bytes, store a lower or upper bound instead of the minimum or maximum values above.booleanhasMaximum()optional string maximum = 2;booleanhasMinimum()optional string minimum = 1;booleanhasSum()sum will store the total length of all strings in a stripebooleanhasUpperBound()optional string upperBound = 5;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMinimum
boolean hasMinimum()
optional string minimum = 1;- Returns:
- Whether the minimum field is set.
-
getMinimum
String getMinimum()
optional string minimum = 1;- Returns:
- The minimum.
-
getMinimumBytes
com.google.protobuf.ByteString getMinimumBytes()
optional string minimum = 1;- Returns:
- The bytes for minimum.
-
hasMaximum
boolean hasMaximum()
optional string maximum = 2;- Returns:
- Whether the maximum field is set.
-
getMaximum
String getMaximum()
optional string maximum = 2;- Returns:
- The maximum.
-
getMaximumBytes
com.google.protobuf.ByteString getMaximumBytes()
optional string maximum = 2;- Returns:
- The bytes for maximum.
-
hasSum
boolean hasSum()
sum will store the total length of all strings in a stripe
optional sint64 sum = 3;- Returns:
- Whether the sum field is set.
-
getSum
long getSum()
sum will store the total length of all strings in a stripe
optional sint64 sum = 3;- Returns:
- The sum.
-
hasLowerBound
boolean hasLowerBound()
If the minimum or maximum value was longer than 1024 bytes, store a lower or upper bound instead of the minimum or maximum values above.
optional string lowerBound = 4;- Returns:
- Whether the lowerBound field is set.
-
getLowerBound
String getLowerBound()
If the minimum or maximum value was longer than 1024 bytes, store a lower or upper bound instead of the minimum or maximum values above.
optional string lowerBound = 4;- Returns:
- The lowerBound.
-
getLowerBoundBytes
com.google.protobuf.ByteString getLowerBoundBytes()
If the minimum or maximum value was longer than 1024 bytes, store a lower or upper bound instead of the minimum or maximum values above.
optional string lowerBound = 4;- Returns:
- The bytes for lowerBound.
-
hasUpperBound
boolean hasUpperBound()
optional string upperBound = 5;- Returns:
- Whether the upperBound field is set.
-
getUpperBound
String getUpperBound()
optional string upperBound = 5;- Returns:
- The upperBound.
-
getUpperBoundBytes
com.google.protobuf.ByteString getUpperBoundBytes()
optional string upperBound = 5;- Returns:
- The bytes for upperBound.
-
-