@Public public enum Aggregations extends Enum<Aggregations>
| Modifier and Type | Method and Description | 
|---|---|
| AggregationFunctionFactory | getFactory() | 
| static Aggregations | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Aggregations[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Aggregations SUM
public static final Aggregations MIN
public static final Aggregations MAX
public static Aggregations[] values()
for (Aggregations c : Aggregations.values()) System.out.println(c);
public static Aggregations 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 nullpublic AggregationFunctionFactory getFactory()
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.