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