public static enum Events.AggregationFunction extends Enum<Events.AggregationFunction>
| Enum Constant and Description |
|---|
AVG |
COUNT |
MAX |
MIN |
STDDEV_POP |
STDDEV_SAMP |
SUM |
VAR_POP |
VAR_SAMP |
| Modifier and Type | Method and Description |
|---|---|
static Events.AggregationFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Events.AggregationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Events.AggregationFunction AVG
public static final Events.AggregationFunction MIN
public static final Events.AggregationFunction MAX
public static final Events.AggregationFunction SUM
public static final Events.AggregationFunction COUNT
public static final Events.AggregationFunction STDDEV_POP
public static final Events.AggregationFunction STDDEV_SAMP
public static final Events.AggregationFunction VAR_POP
public static final Events.AggregationFunction VAR_SAMP
public static Events.AggregationFunction[] values()
for (Events.AggregationFunction c : Events.AggregationFunction.values()) System.out.println(c);
public static Events.AggregationFunction 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 © 2019. All rights reserved.