public enum ExasolAnalyticFunctions extends Enum<ExasolAnalyticFunctions> 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 ExasolAnalyticFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExasolAnalyticFunctions[] |
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 ExasolAnalyticFunctions ANY
public static final ExasolAnalyticFunctions EVERY
public static final ExasolAnalyticFunctions LISTAGG
public static ExasolAnalyticFunctions[] values()
for (ExasolAnalyticFunctions c : ExasolAnalyticFunctions.values()) System.out.println(c);
public static ExasolAnalyticFunctions 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–2020. All rights reserved.