public static enum Events.AggregationFunction extends Enum<Events.AggregationFunction>
| 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 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 © 2020. All rights reserved.