public final enum

ConsolFun

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.rrd4j.ConsolFun

Class Overview

Enumeration of available consolidation functions. Note that data aggregation inevitably leads to loss of precision and information. The trick is to pick the aggregate function such that the interesting properties of your data are kept across the aggregation process.

Summary

Enum Values
ConsolFun  AVERAGE  The average of the data points is stored. 
ConsolFun  FIRST  The fist data point is used. 
ConsolFun  LAST  The last data point is used. 
ConsolFun  MAX  The largest of the data points is stored. 
ConsolFun  MIN  The smallest of the data points is stored. 
ConsolFun  TOTAL  The total of the data points is stored. 
Public Methods
static ConsolFun valueOf(String name)
final static ConsolFun[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ConsolFun AVERAGE

The average of the data points is stored.

public static final ConsolFun FIRST

The fist data point is used.

public static final ConsolFun LAST

The last data point is used.

public static final ConsolFun MAX

The largest of the data points is stored.

public static final ConsolFun MIN

The smallest of the data points is stored.

public static final ConsolFun TOTAL

The total of the data points is stored.

Public Methods

public static ConsolFun valueOf (String name)

public static final ConsolFun[] values ()