Interface AggregationResult.Histogram.BucketOrBuilder

    • 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.MessageLiteOrBuilder

        isInitialized
      • 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.