public enum AggregationFunction extends java.lang.Enum<AggregationFunction>
Enum Constant and Description |
---|
AVERAGE |
COUNT |
MAXIMUM |
MINIMUM |
QUANTIZE |
SUM |
Modifier and Type | Method and Description |
---|---|
abstract AggregationValue |
newValue() |
static AggregationFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationFunction COUNT
public static final AggregationFunction SUM
public static final AggregationFunction MINIMUM
public static final AggregationFunction MAXIMUM
public static final AggregationFunction AVERAGE
public static final AggregationFunction QUANTIZE
public static AggregationFunction[] values()
for (AggregationFunction c : AggregationFunction.values()) System.out.println(c);
public static AggregationFunction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic abstract AggregationValue newValue()