public enum Aggregation extends Enum<Aggregation> implements Q
| Enum Constant and Description |
|---|
avg
Avg.
|
count
Count.
|
first
First element.
|
last
Last element.
|
max
maximum.
|
min
Minimum.
|
sum
Sum.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toQ() |
static Aggregation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregation min
public static final Aggregation max
public static final Aggregation first
public static final Aggregation last
public static final Aggregation avg
public static final Aggregation sum
public static final Aggregation count
public static Aggregation[] values()
for (Aggregation c : Aggregation.values()) System.out.println(c);
public static Aggregation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2012-2014. All Rights Reserved.