Interface ReportSummary.HistogramChartData.BucketOrBuilder

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

        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.