public enum ExasolAnalyticFunction extends Enum<ExasolAnalyticFunction> implements FunctionName
This class covers functions that are not in the ExasolAggregateFunction list.
Currently unsupported functions: CUME_DIST, DENSE_RANK, LAG, LEAD, NTH_VALUE, NTILE, NAMED WINDOW CLAUSE, PERCENT_RANK, PERCENTILE_CONT, PERCENTILE_DISC, RANK, RATIO_TO_REPORT, ROW_NUMBER, OVER clause for all analytic functions, functions' prefixes that goes after parenthesis. See github issue # 72.
| Modifier and Type | Method and Description |
|---|---|
static ExasolAnalyticFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExasolAnalyticFunction[] |
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 ExasolAnalyticFunction ANY
public static final ExasolAnalyticFunction EVERY
public static final ExasolAnalyticFunction LISTAGG
public static ExasolAnalyticFunction[] values()
for (ExasolAnalyticFunction c : ExasolAnalyticFunction.values()) System.out.println(c);
public static ExasolAnalyticFunction 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.