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

com.jamonapi.Range Maven / Gradle / Ivy

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


/** Class that contains buckets of time that are tracked within a monitor.
 */
public interface Range  extends JAMonListener {

    /**Return a FrequencyDist associated with the passed in value. */
    public FrequencyDist getFrequencyDist(double value);

    /** Return the array of all FrequnceDists in this range*/
    public FrequencyDist[] getFrequencyDists();

    /** Add a value to the FrequencyDist associated with the value that is passed */
    public void add(double value);

    /** Reset all FrequencyDists associated with this Range */
    public void reset();

    /** Get the logical operator associated with the top end point.  Possible values
     * are < and <=
     **/
    public String getLogicalOperator();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy