public enum AnalyticType extends Enum<AnalyticType>
| Enum Constant and Description |
|---|
FILTER_ONLY |
OVER |
WITHIN_GROUP |
| Modifier and Type | Method and Description |
|---|---|
static AnalyticType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnalyticType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalyticType OVER
public static final AnalyticType WITHIN_GROUP
public static final AnalyticType FILTER_ONLY
public static AnalyticType[] values()
for (AnalyticType c : AnalyticType.values()) System.out.println(c);
public static AnalyticType 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 © 2004–2021 JSQLParser. All rights reserved.