public enum AggregationType extends java.lang.Enum<AggregationType>
Enum Constant and Description |
---|
AVERAGE
The average.
|
FILTER
The filter.
|
HISTOGRAM
The histogram.
|
MAX
The max.
|
MIN
The min.
|
NESTED
The nested.
|
SUM
The sum.
|
TERM
The term.
|
TIMESLICE
The timeslice.
|
TOP_HITS
The top hits.
|
UNIQUE_COUNT
The unique count.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Gets the name.
|
java.lang.String |
toString()
To string.
|
static AggregationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregationType |
valueOfIgnoreCase(java.lang.String value)
Value of ignore case.
|
static AggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationType TERM
public static final AggregationType FILTER
public static final AggregationType NESTED
public static final AggregationType HISTOGRAM
public static final AggregationType TIMESLICE
public static final AggregationType TOP_HITS
public static final AggregationType UNIQUE_COUNT
public static final AggregationType MAX
public static final AggregationType MIN
public static final AggregationType AVERAGE
public static final AggregationType SUM
public static AggregationType[] values()
for (AggregationType c : AggregationType.values()) System.out.println(c);
public static AggregationType 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 getName()
public static AggregationType valueOfIgnoreCase(java.lang.String value) throws java.lang.IllegalArgumentException
value
- the valuejava.lang.IllegalArgumentException
- the illegal argument exceptionpublic java.lang.String toString()
toString
in class java.lang.Enum<AggregationType>