public enum AdhocCalculation extends Enum<AdhocCalculation>
AdhocCalculation class.
Enum Constant and Description |
---|
AVERAGE |
COUNT |
DISTINCT_COUNT |
FIRST |
HIGHEST |
LOWEST |
NOTHING |
STANDARD_DEVIATION |
SUM |
VARIANCE |
Modifier and Type | Method and Description |
---|---|
static AdhocCalculation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdhocCalculation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdhocCalculation NOTHING
public static final AdhocCalculation COUNT
public static final AdhocCalculation SUM
public static final AdhocCalculation AVERAGE
public static final AdhocCalculation LOWEST
public static final AdhocCalculation HIGHEST
public static final AdhocCalculation STANDARD_DEVIATION
public static final AdhocCalculation VARIANCE
public static final AdhocCalculation FIRST
public static final AdhocCalculation DISTINCT_COUNT
public static AdhocCalculation[] values()
for (AdhocCalculation c : AdhocCalculation.values()) System.out.println(c);
public static AdhocCalculation 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 © 2010–2021. All rights reserved.