public enum AggregationType extends Enum<AggregationType>
| Enum Constant and Description |
|---|
AGG_AVG |
AGG_COUNT |
AGG_DISTINCT_COUNT |
AGG_MAX |
AGG_MIN |
AGG_PERCENTILES |
AGG_SUM |
AGG_TOP_ROWS |
| Modifier and Type | Method and Description |
|---|---|
static AggregationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationType AGG_AVG
public static final AggregationType AGG_DISTINCT_COUNT
public static final AggregationType AGG_MAX
public static final AggregationType AGG_MIN
public static final AggregationType AGG_SUM
public static final AggregationType AGG_COUNT
public static final AggregationType AGG_TOP_ROWS
public static final AggregationType AGG_PERCENTILES
public static AggregationType[] values()
for (AggregationType c : AggregationType.values()) System.out.println(c);
public static AggregationType 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 © 2024. All Rights Reserved.