public enum ConsolidationFunction extends java.lang.Enum<ConsolidationFunction>
| Enum Constant and Description |
|---|
Average
Specifies the average.
|
Count
Specifies the count.
|
CountNums
Specifies to count numerical values only.
|
DistinctCount |
Max
Specifies the maximum.
|
Min
Specifies the minimum.
|
Product
Specifies to multiply.
|
StdDev
Specifies the standard deviation, based on a sample.
|
StdDevp
Specifies the standard deviation, based on the entire population.
|
Sum
Specifies the sum.
|
Unknown
Specifies that no subtotal function is specified.
|
Var
Specifies the variation, based on a sample.
|
Varp
Specifies the variation, based on the entire population.
|
| Modifier and Type | Method and Description |
|---|---|
static ConsolidationFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConsolidationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConsolidationFunction Sum
public static final ConsolidationFunction Varp
public static final ConsolidationFunction Var
public static final ConsolidationFunction StdDevp
public static final ConsolidationFunction StdDev
public static final ConsolidationFunction Product
public static final ConsolidationFunction Min
public static final ConsolidationFunction Max
public static final ConsolidationFunction CountNums
public static final ConsolidationFunction Count
public static final ConsolidationFunction Average
public static final ConsolidationFunction DistinctCount
public static final ConsolidationFunction Unknown
public static ConsolidationFunction[] values()
for (ConsolidationFunction c : ConsolidationFunction.values()) System.out.println(c);
public static ConsolidationFunction 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