public static enum Aggregate.AggregateType extends Enum<Aggregate.AggregateType>
Enum Constant and Description |
---|
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).
|
BOOL_AND
The aggregate type for BOOL_AND(expression).
|
BOOL_OR
The aggregate type for BOOL_OR(expression).
|
COUNT
The aggregate type for COUNT(expression).
|
COUNT_ALL
The aggregate type for COUNT(*).
|
GROUP_CONCAT
The aggregate type for GROUP_CONCAT(...).
|
HISTOGRAM
The aggregate type for HISTOGRAM(expression).
|
MAX
The aggregate type for MAX(expression).
|
MEDIAN
The aggregate type for MEDIAN(expression).
|
MIN
The aggregate type for MIN(expression).
|
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 Aggregate.AggregateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregate.AggregateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregate.AggregateType COUNT_ALL
public static final Aggregate.AggregateType COUNT
public static final Aggregate.AggregateType GROUP_CONCAT
public static final Aggregate.AggregateType SUM
public static final Aggregate.AggregateType MIN
public static final Aggregate.AggregateType MAX
public static final Aggregate.AggregateType AVG
public static final Aggregate.AggregateType STDDEV_POP
public static final Aggregate.AggregateType STDDEV_SAMP
public static final Aggregate.AggregateType VAR_POP
public static final Aggregate.AggregateType VAR_SAMP
public static final Aggregate.AggregateType BOOL_OR
public static final Aggregate.AggregateType BOOL_AND
public static final Aggregate.AggregateType BIT_OR
public static final Aggregate.AggregateType BIT_AND
public static final Aggregate.AggregateType SELECTIVITY
public static final Aggregate.AggregateType HISTOGRAM
public static final Aggregate.AggregateType MEDIAN
public static final Aggregate.AggregateType ARRAY_AGG
public static Aggregate.AggregateType[] values()
for (Aggregate.AggregateType c : Aggregate.AggregateType.values()) System.out.println(c);
public static Aggregate.AggregateType 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 © 2020 JBoss by Red Hat. All rights reserved.