Interface Histogram.Bucket

All Known Implementing Classes:
ImmutableBucket
Enclosing interface:
Histogram

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

    Modifier and Type
    Method
    Description
    double
    Returns the count of events in this bucket.
    double
    Returns the bucket maximum (exclusive).
    double
    Returns the bucket minimum (inclusive).
  • Method Details

    • 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