public enum AggregationFormula extends Enum<AggregationFormula>
Enum Constant and Description |
---|
CONTRIB |
COUNT |
COUNTDISTINCT |
CUMCONTRIB |
CUMSUM |
FORMULA |
FUNCTION |
INDEX |
MORE |
PERCENT |
PERUNIT |
SUM |
Modifier and Type | Method and Description |
---|---|
static AggregationFormula |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationFormula[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationFormula SUM
public static final AggregationFormula PERUNIT
public static final AggregationFormula PERCENT
public static final AggregationFormula INDEX
public static final AggregationFormula CUMSUM
public static final AggregationFormula CONTRIB
public static final AggregationFormula CUMCONTRIB
public static final AggregationFormula COUNT
public static final AggregationFormula COUNTDISTINCT
public static final AggregationFormula FORMULA
public static final AggregationFormula FUNCTION
public static final AggregationFormula MORE
public static AggregationFormula[] values()
for (AggregationFormula c : AggregationFormula.values()) System.out.println(c);
public static AggregationFormula 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 © 2019. All rights reserved.