Package org.jrobin.data
Class Aggregates
- java.lang.Object
-
- org.jrobin.data.Aggregates
-
- All Implemented Interfaces:
ConsolFuns
public class Aggregates extends Object implements ConsolFuns
Simple class which holds aggregated values (MIN, MAX, FIRST, LAST, AVERAGE and TOTAL). You don't need to create objects of this class directly. Objects of this class are returned fromgetAggregates()method inFetchDataandDataProcessor.getAggregates(String)DataProcessor} classes.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) doubleaverage(package private) doublefirst(package private) doublelast(package private) doublelslcorrel(package private) doublelslint(package private) doublelslslope(package private) doublemax(package private) doublemin(package private) doublestdev(package private) doubletotal-
Fields inherited from interface org.jrobin.core.ConsolFuns
CF_AVERAGE, CF_FIRST, CF_LAST, CF_MAX, CF_MIN, CF_TOTAL
-
-
Constructor Summary
Constructors Constructor Description Aggregates()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdump()Returns String representing all aggregated values.doublegetAggregate(String consolFun)Returns single aggregated value for the give consolidation functiondoublegetAverage()Returns averagedoublegetFirst()Returns the first faluedoublegetLast()Returns the last valuedoublegetLSLCorrel()Returns Least Squares Line Correlation CoefficientdoublegetLSLInt()Returns Least Squares Line y-intercept valuedoublegetLSLSlope()Returns Least Squares Line Slope valuedoublegetMax()Returns the maximum valuedoublegetMin()Returns the minimal valuedoublegetStdev()Returns stdev valuedoublegetTotal()Returns total value
-
-
-
Method Detail
-
getMin
public double getMin()
Returns the minimal value- Returns:
- Minimal value
-
getMax
public double getMax()
Returns the maximum value- Returns:
- Maximum value
-
getFirst
public double getFirst()
Returns the first falue- Returns:
- First value
-
getLast
public double getLast()
Returns the last value- Returns:
- Last value
-
getAverage
public double getAverage()
Returns average- Returns:
- Average value
-
getTotal
public double getTotal()
Returns total value- Returns:
- Total value
-
getStdev
public double getStdev()
Returns stdev value- Returns:
- Stdev value
-
getLSLSlope
public double getLSLSlope()
Returns Least Squares Line Slope value- Returns:
- lslslope value
-
getLSLInt
public double getLSLInt()
Returns Least Squares Line y-intercept value- Returns:
- lslint value
-
getLSLCorrel
public double getLSLCorrel()
Returns Least Squares Line Correlation Coefficient- Returns:
- lslcorrel value
-
getAggregate
public double getAggregate(String consolFun) throws RrdException
Returns single aggregated value for the give consolidation function- Parameters:
consolFun- Consolidation function: MIN, MAX, FIRST, LAST, AVERAGE, TOTAL. These constants are conveniently defined in theConsolFunsinterface.- Returns:
- Aggregated value
- Throws:
RrdException- Thrown if unsupported consolidation function is supplied
-
dump
public String dump()
Returns String representing all aggregated values. Just for debugging purposes.- Returns:
- String containing all aggregated values
-
-