net.sf.dynamicreports.adhoc.configuration
Enum AdhocCalculation
java.lang.Object
java.lang.Enum<AdhocCalculation>
net.sf.dynamicreports.adhoc.configuration.AdhocCalculation
- All Implemented Interfaces:
- Serializable, Comparable<AdhocCalculation>
public enum AdhocCalculation
- extends Enum<AdhocCalculation>
- Author:
- Ricardo Mariaca (dynamicreports@gmail.com)
NOTHING
public static final AdhocCalculation NOTHING
COUNT
public static final AdhocCalculation COUNT
SUM
public static final AdhocCalculation SUM
AVERAGE
public static final AdhocCalculation AVERAGE
LOWEST
public static final AdhocCalculation LOWEST
HIGHEST
public static final AdhocCalculation HIGHEST
STANDARD_DEVIATION
public static final AdhocCalculation STANDARD_DEVIATION
VARIANCE
public static final AdhocCalculation VARIANCE
FIRST
public static final AdhocCalculation FIRST
DISTINCT_COUNT
public static final AdhocCalculation DISTINCT_COUNT
values
public static AdhocCalculation[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AdhocCalculation c : AdhocCalculation.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AdhocCalculation valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2010-2012. All Rights Reserved.