public enum AggregationFn extends java.lang.Enum<AggregationFn>
Modifier and Type | Method and Description |
---|---|
static AggregationFn |
decode(java.lang.String s) |
java.lang.String |
getAggregationFn() |
static AggregationFn |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregationFn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationFn sum
public static final AggregationFn avg
public static final AggregationFn min
public static final AggregationFn max
public static AggregationFn[] values()
for (AggregationFn c : AggregationFn.values()) System.out.println(c);
public static AggregationFn 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 java.lang.String getAggregationFn()
public static AggregationFn decode(java.lang.String s)