01: package com.jamonapi;
02:
03: /**
04: * FrequencyDist's are what Ranges are made of. They are buckets of aggregate stats
05: * within the monitor. For example a FrequencyDist for ms. may be 0-10 ms., 20-40 ms.
06: * etc. They have end points, and all FrequencyDists within a range equate to
07: * the entire range of possible values for a monitor.
08: *
09: */
10:
11: public interface FrequencyDist extends MonitorInt {
12: /** Get the end value of the FrequencyDist.*/
13: public double getEndValue();
14:
15: }
|