public static enum AnalyticFunction.Keyword extends Enum<AnalyticFunction.Keyword>
| Modifier and Type | Method and Description |
|---|---|
static AnalyticFunction.Keyword |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnalyticFunction.Keyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalyticFunction.Keyword DISTINCT
public static final AnalyticFunction.Keyword ALL
public static AnalyticFunction.Keyword[] values()
for (AnalyticFunction.Keyword c : AnalyticFunction.Keyword.values()) System.out.println(c);
public static AnalyticFunction.Keyword 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.