public enum FieldAggregation extends java.lang.Enum<FieldAggregation>
| Enum Constant and Description |
|---|
AVERAGE |
COUNT |
FIRST |
LAST |
MAX |
MERGE |
MIN |
NONE |
PLAIN_TEXT |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static FieldAggregation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldAggregation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldAggregation AVERAGE
public static final FieldAggregation COUNT
public static final FieldAggregation FIRST
public static final FieldAggregation LAST
public static final FieldAggregation MAX
public static final FieldAggregation MERGE
public static final FieldAggregation MIN
public static final FieldAggregation NONE
public static final FieldAggregation PLAIN_TEXT
public static final FieldAggregation SUM
public static FieldAggregation 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 static FieldAggregation[] values()
for (FieldAggregation c : FieldAggregation.values()) System.out.println(c);