Interface Histogram.Bucket

  • All Known Implementing Classes:
    ImmutableBucket
    Enclosing interface:
    Histogram

    public static interface Histogram.Bucket
    A histogram bucket.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double count()
      Returns the count of events in this bucket.
      double maximum()
      Returns the bucket maximum (exclusive).
      double minimum()
      Returns the bucket minimum (inclusive).
    • Method Detail

      • minimum

        double minimum()
        Returns the bucket minimum (inclusive).
        Returns:
        the bucket minimum
      • maximum

        double maximum()
        Returns the bucket maximum (exclusive).
        Returns:
        the bucket maximum
      • count

        double count()
        Returns the count of events in this bucket.
        Returns:
        the bucket event count