public enum ExasolAggregateFunction extends Enum<ExasolAggregateFunction> implements FunctionName
Currently unsupported functions: GROUPING, PERCENTILE_CONT, PERCENTILE_DISC, OVER clause for all aggregate functions and keywords. See github issue # 72.
| Enum Constant and Description |
|---|
APPROXIMATE_COUNT_DISTINCT |
AVG |
CORR |
COUNT |
COVAR_POP |
COVAR_SAMP |
FIRST_VALUE |
GROUP_CONCAT |
LAST_VALUE |
MAX |
MEDIAN |
MIN |
REGR_AVGX |
REGR_AVGY |
REGR_COUNT |
REGR_INTERCEPT |
REGR_R2 |
REGR_SLOPE |
REGR_SXX |
REGR_SXY |
REGR_SYY |
STDDEV |
STDDEV_POP |
STDDEV_SAMP |
SUM |
VAR_POP |
VAR_SAMP |
VARIANCE |
| Modifier and Type | Method and Description |
|---|---|
static ExasolAggregateFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExasolAggregateFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final ExasolAggregateFunction APPROXIMATE_COUNT_DISTINCT
public static final ExasolAggregateFunction AVG
public static final ExasolAggregateFunction CORR
public static final ExasolAggregateFunction COUNT
public static final ExasolAggregateFunction COVAR_POP
public static final ExasolAggregateFunction COVAR_SAMP
public static final ExasolAggregateFunction FIRST_VALUE
public static final ExasolAggregateFunction GROUP_CONCAT
public static final ExasolAggregateFunction LAST_VALUE
public static final ExasolAggregateFunction MAX
public static final ExasolAggregateFunction MEDIAN
public static final ExasolAggregateFunction MIN
public static final ExasolAggregateFunction REGR_SLOPE
public static final ExasolAggregateFunction REGR_INTERCEPT
public static final ExasolAggregateFunction REGR_COUNT
public static final ExasolAggregateFunction REGR_R2
public static final ExasolAggregateFunction REGR_AVGX
public static final ExasolAggregateFunction REGR_AVGY
public static final ExasolAggregateFunction REGR_SXX
public static final ExasolAggregateFunction REGR_SXY
public static final ExasolAggregateFunction REGR_SYY
public static final ExasolAggregateFunction STDDEV
public static final ExasolAggregateFunction STDDEV_POP
public static final ExasolAggregateFunction STDDEV_SAMP
public static final ExasolAggregateFunction SUM
public static final ExasolAggregateFunction VAR_POP
public static final ExasolAggregateFunction VAR_SAMP
public static final ExasolAggregateFunction VARIANCE
public static ExasolAggregateFunction[] values()
for (ExasolAggregateFunction c : ExasolAggregateFunction.values()) System.out.println(c);
public static ExasolAggregateFunction 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 © 2018–2021. All rights reserved.