public enum AnalyticType extends Enum<AnalyticType>
| Enum Constant and Description |
|---|
FILTER_ONLY |
OVER |
WITHIN_GROUP |
WITHIN_GROUP_OVER |
| Modifier and Type | Method and Description |
|---|---|
static AnalyticType |
from(String type) |
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 WITHIN_GROUP_OVER
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 nullpublic static AnalyticType from(String type)
Copyright © 2004–2023 JSQLParser. All rights reserved.