public enum AggregateType extends java.lang.Enum<AggregateType>
| Enum Constant and Description |
|---|
ANY
The aggregate type for ANY(expression).
|
ARRAY_AGG
The aggregate type for ARRAY_AGG(expression).
|
AVG
The aggregate type for AVG(expression).
|
BIT_AND
The aggregate type for BOOL_AND(expression).
|
BIT_OR
The aggregate type for BOOL_OR(expression).
|
COUNT
The aggregate type for COUNT(expression).
|
COUNT_ALL
The aggregate type for COUNT(*).
|
CUME_DIST
The type for CUME_DIST() hypothetical set function.
|
DENSE_RANK
The type for DENSE_RANK() hypothetical set function.
|
ENVELOPE
The aggregate type for ENVELOPE(expression).
|
EVERY
The aggregate type for EVERY(expression).
|
HISTOGRAM
The aggregate type for HISTOGRAM(expression).
|
JSON_ARRAYAGG
The aggregate type for JSON_ARRAYAGG(expression).
|
JSON_OBJECTAGG
The aggregate type for JSON_OBJECTAGG(expression: expression).
|
LISTAGG
The aggregate type for LISTAGG(...).
|
MAX
The aggregate type for MAX(expression).
|
MEDIAN
The aggregate type for MEDIAN(expression).
|
MIN
The aggregate type for MIN(expression).
|
MODE
The aggregate type for MODE(expression).
|
PERCENT_RANK
The type for PERCENT_RANK() hypothetical set function.
|
PERCENTILE_CONT
The aggregate type for PERCENTILE_CONT(expression).
|
PERCENTILE_DISC
The aggregate type for PERCENTILE_DISC(expression).
|
RANK
The type for RANK() hypothetical set function.
|
SELECTIVITY
The aggregate type for SELECTIVITY(expression).
|
STDDEV_POP
The aggregate type for STDDEV_POP(expression).
|
STDDEV_SAMP
The aggregate type for STDDEV_SAMP(expression).
|
SUM
The aggregate type for SUM(expression).
|
VAR_POP
The aggregate type for VAR_POP(expression).
|
VAR_SAMP
The aggregate type for VAR_SAMP(expression).
|
| Modifier and Type | Method and Description |
|---|---|
static AggregateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateType COUNT_ALL
public static final AggregateType COUNT
public static final AggregateType SUM
public static final AggregateType MIN
public static final AggregateType MAX
public static final AggregateType AVG
public static final AggregateType STDDEV_POP
public static final AggregateType STDDEV_SAMP
public static final AggregateType VAR_POP
public static final AggregateType VAR_SAMP
public static final AggregateType ANY
public static final AggregateType EVERY
public static final AggregateType BIT_OR
public static final AggregateType BIT_AND
public static final AggregateType SELECTIVITY
public static final AggregateType HISTOGRAM
public static final AggregateType RANK
public static final AggregateType DENSE_RANK
public static final AggregateType PERCENT_RANK
public static final AggregateType CUME_DIST
public static final AggregateType PERCENTILE_CONT
public static final AggregateType PERCENTILE_DISC
public static final AggregateType MEDIAN
public static final AggregateType LISTAGG
public static final AggregateType ARRAY_AGG
public static final AggregateType MODE
public static final AggregateType ENVELOPE
public static final AggregateType JSON_OBJECTAGG
public static final AggregateType JSON_ARRAYAGG
public static AggregateType[] values()
for (AggregateType c : AggregateType.values()) System.out.println(c);
public static AggregateType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null