Interface RangeStatistic

All Superinterfaces:
Statistic
All Known Subinterfaces:
AverageRangeStatistic, BoundedRangeStatistic
All Known Implementing Classes:
AverageRangeStatisticImpl, BoundedRangeStatisticImpl, RangeStatisticImpl

public interface RangeStatistic extends Statistic
Specifies standard measurements of the lowest and highest values an attribute has held as well as its current value.
  • Method Details

    • getHighWaterMark

      long getHighWaterMark()
      The highest value this attribute has held since the beginninYg of the measurement.
    • getLowWaterMark

      long getLowWaterMark()
      The lowest value this attribute has held since the beginning of the measurement.
    • getCurrent

      long getCurrent()
      The current value of this attribute.