Interface ReportSummary.HistogramChartData.BucketOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReportSummary.HistogramChartData.Bucket
,ReportSummary.HistogramChartData.Bucket.Builder
- Enclosing class:
- ReportSummary.HistogramChartData
public static interface ReportSummary.HistogramChartData.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.long
getLowerBound()
Lower bound - inclusive.long
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
long getLowerBound()
Lower bound - inclusive.
int64 lower_bound = 1;
- Returns:
- The lowerBound.
-
getUpperBound
long getUpperBound()
Upper bound - exclusive.
int64 upper_bound = 2;
- Returns:
- The upperBound.
-
getCount
long getCount()
Count of items in the bucket.
int64 count = 3;
- Returns:
- The count.
-
-