Interface Float64Stats.HistogramBucketOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getCount()
      The number of data values that are in the bucket, i.e.
      double getMax()
      The maximum value of the bucket, exclusive unless max = `"Infinity"`, in which case it's inclusive.
      double getMin()
      The minimum value of the bucket, inclusive.
      • 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

      • getMin

        double getMin()
         The minimum value of the bucket, inclusive.
         
        double min = 1;
        Returns:
        The min.
      • getMax

        double getMax()
         The maximum value of the bucket, exclusive unless max = `"Infinity"`, in
         which case it's inclusive.
         
        double max = 2;
        Returns:
        The max.
      • getCount

        long getCount()
         The number of data values that are in the bucket, i.e. are between
         min and max values.
         
        int64 count = 3;
        Returns:
        The count.