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. |
|
[Expand]
Inherited Methods |
From class
java.lang.Enum
|
final
Object
|
clone()
|
|
int
|
compareTo(Object arg0)
|
|
final
int
|
compareTo(E arg0)
|
|
final
boolean
|
equals(Object arg0)
|
|
final
void
|
finalize()
|
|
final
Class<E>
|
getDeclaringClass()
|
|
final
int
|
hashCode()
|
|
final
String
|
name()
|
|
final
int
|
ordinal()
|
|
String
|
toString()
|
|
static
<T extends Enum<T>>
T
|
valueOf(Class<T> arg0, String arg1)
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
java.lang.Comparable
|
abstract
int
|
compareTo(T arg0)
|
|
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