All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jamonapi.FrequencyDist Maven / Gradle / Ivy

There is a newer version: 2.82
Show newest version
package com.jamonapi;

/**
 * FrequencyDist's are what Ranges are made of.  They are buckets of aggregate stats
 * within the monitor.  For example a FrequencyDist for ms. may be 0-10 ms., 20-40 ms.
 * etc.  They have end points, and all FrequencyDists within a range equate to
 * the entire range of possible values for a monitor.
 *
 */

public interface FrequencyDist extends MonitorInt {
    /** Get the end value of the FrequencyDist.*/
    public double getEndValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy