Interface AggregationResult.Histogram.BucketOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AggregationResult.Histogram.Bucket
,AggregationResult.Histogram.Bucket.Builder
- Enclosing class:
- AggregationResult.Histogram
public static interface AggregationResult.Histogram.BucketOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCount()
Count of items in the bucket.double
getLowerBound()
Lower bound - inclusive.double
getUpperBound()
Upper bound - exclusive.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLowerBound
double getLowerBound()
Lower bound - inclusive.
double lower_bound = 1;
- Returns:
- The lowerBound.
-
getUpperBound
double getUpperBound()
Upper bound - exclusive.
double upper_bound = 2;
- Returns:
- The upperBound.
-
getCount
long getCount()
Count of items in the bucket.
int64 count = 3;
- Returns:
- The count.
-
-