Serializable, Comparable<AggregateFunctionCapability>public enum AggregateFunctionCapability extends Enum<AggregateFunctionCapability>
| Enum Constant | Description |
|---|---|
APPROXIMATE_COUNT_DISTINCT |
|
AVG |
|
AVG_DISTINCT |
|
COUNT |
Required for any kind of COUNT(...) with expressions.
|
COUNT_DISTINCT |
Required for COUNT(DISTINCT ...).
|
COUNT_STAR |
Required only for COUNT(*).
|
FIRST_VALUE |
|
GEO_INTERSECTION_AGGREGATE |
|
GEO_UNION_AGGREGATE |
|
GROUP_CONCAT |
|
GROUP_CONCAT_DISTINCT |
|
GROUP_CONCAT_ORDER_BY |
|
GROUP_CONCAT_SEPARATOR |
|
LAST_VALUE |
|
MAX |
|
MEDIAN |
|
MIN |
|
STDDEV |
|
STDDEV_DISTINCT |
|
STDDEV_POP |
|
STDDEV_POP_DISTINCT |
|
STDDEV_SAMP |
|
STDDEV_SAMP_DISTINCT |
|
SUM |
|
SUM_DISTINCT |
|
VAR_POP |
|
VAR_POP_DISTINCT |
|
VAR_SAMP |
|
VAR_SAMP_DISTINCT |
|
VARIANCE |
|
VARIANCE_DISTINCT |
| Modifier and Type | Method | Description |
|---|---|---|
AggregateFunction |
getFunction() |
|
static AggregateFunctionCapability |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static AggregateFunctionCapability[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateFunctionCapability COUNT
public static final AggregateFunctionCapability COUNT_STAR
public static final AggregateFunctionCapability COUNT_DISTINCT
public static final AggregateFunctionCapability SUM
public static final AggregateFunctionCapability SUM_DISTINCT
public static final AggregateFunctionCapability MIN
public static final AggregateFunctionCapability MAX
public static final AggregateFunctionCapability AVG
public static final AggregateFunctionCapability AVG_DISTINCT
public static final AggregateFunctionCapability MEDIAN
public static final AggregateFunctionCapability FIRST_VALUE
public static final AggregateFunctionCapability LAST_VALUE
public static final AggregateFunctionCapability STDDEV
public static final AggregateFunctionCapability STDDEV_DISTINCT
public static final AggregateFunctionCapability STDDEV_POP
public static final AggregateFunctionCapability STDDEV_POP_DISTINCT
public static final AggregateFunctionCapability STDDEV_SAMP
public static final AggregateFunctionCapability STDDEV_SAMP_DISTINCT
public static final AggregateFunctionCapability VARIANCE
public static final AggregateFunctionCapability VARIANCE_DISTINCT
public static final AggregateFunctionCapability VAR_POP
public static final AggregateFunctionCapability VAR_POP_DISTINCT
public static final AggregateFunctionCapability VAR_SAMP
public static final AggregateFunctionCapability VAR_SAMP_DISTINCT
public static final AggregateFunctionCapability GROUP_CONCAT
public static final AggregateFunctionCapability GROUP_CONCAT_DISTINCT
public static final AggregateFunctionCapability GROUP_CONCAT_SEPARATOR
public static final AggregateFunctionCapability GROUP_CONCAT_ORDER_BY
public static final AggregateFunctionCapability GEO_INTERSECTION_AGGREGATE
public static final AggregateFunctionCapability GEO_UNION_AGGREGATE
public static final AggregateFunctionCapability APPROXIMATE_COUNT_DISTINCT
public static AggregateFunctionCapability[] values()
for (AggregateFunctionCapability c : AggregateFunctionCapability.values()) System.out.println(c);
public static AggregateFunctionCapability 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 AggregateFunction getFunction()
Copyright © 2019. All rights reserved.