public enum AggregateFunctions extends Enum<AggregateFunctions>
Enum Constant and Description |
---|
ANY |
ARRAY_AGG |
AVG |
COUNT |
DENSE_RANK |
EVERY |
JSONARRAY_AGG |
MAX |
MIN |
RANK |
ROW_NUMBER |
SOME |
STDDEV_POP |
STDDEV_SAMP |
STRING_AGG |
SUM |
TEXTAGG |
USER_DEFINED |
VAR_POP |
VAR_SAMP |
XMLAGG |
Modifier and Type | Method and Description |
---|---|
static AggregateFunctions |
findAggregateFunction(String name) |
static AggregateFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregateFunctions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateFunctions COUNT
public static final AggregateFunctions SUM
public static final AggregateFunctions AVG
public static final AggregateFunctions MIN
public static final AggregateFunctions MAX
public static final AggregateFunctions XMLAGG
public static final AggregateFunctions TEXTAGG
public static final AggregateFunctions ARRAY_AGG
public static final AggregateFunctions ANY
public static final AggregateFunctions SOME
public static final AggregateFunctions EVERY
public static final AggregateFunctions STDDEV_POP
public static final AggregateFunctions STDDEV_SAMP
public static final AggregateFunctions VAR_POP
public static final AggregateFunctions VAR_SAMP
public static final AggregateFunctions RANK
public static final AggregateFunctions DENSE_RANK
public static final AggregateFunctions ROW_NUMBER
public static final AggregateFunctions JSONARRAY_AGG
public static final AggregateFunctions STRING_AGG
public static final AggregateFunctions USER_DEFINED
public static AggregateFunctions[] values()
for (AggregateFunctions c : AggregateFunctions.values()) System.out.println(c);
public static AggregateFunctions 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 static AggregateFunctions findAggregateFunction(String name)
name
- Copyright © 2013–2019. All rights reserved.