public static enum GroupByExpression.GroupingType extends java.lang.Enum<GroupByExpression.GroupingType>
| Enum Constant and Description |
|---|
CUBE |
GROUPING_SETS |
ROLLUP |
| Modifier and Type | Method and Description |
|---|---|
static GroupByExpression.GroupingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupByExpression.GroupingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupByExpression.GroupingType ROLLUP
public static final GroupByExpression.GroupingType CUBE
public static final GroupByExpression.GroupingType GROUPING_SETS
public static GroupByExpression.GroupingType[] values()
for (GroupByExpression.GroupingType c : GroupByExpression.GroupingType.values()) System.out.println(c);
public static GroupByExpression.GroupingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null