public enum AggregationSortTarget extends Enum<AggregationSortTarget>
| Enum Constant and Description |
|---|
GROUP1
Sort by Level 1 group
|
GROUP2
Sort by Level 2 group
|
GROUP3
Sort by Level 3 group
|
TOTAL
Sort by Total
|
| Modifier and Type | Method and Description |
|---|---|
static AggregationSortTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationSortTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationSortTarget TOTAL
public static final AggregationSortTarget GROUP1
public static final AggregationSortTarget GROUP2
public static final AggregationSortTarget GROUP3
public static AggregationSortTarget[] values()
for (AggregationSortTarget c : AggregationSortTarget.values()) System.out.println(c);
public static AggregationSortTarget 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 null