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