Package adams.flow.transformer
Enum SpreadSheetAggregate.Aggregate
- java.lang.Object
-
- java.lang.Enum<SpreadSheetAggregate.Aggregate>
-
- adams.flow.transformer.SpreadSheetAggregate.Aggregate
-
- All Implemented Interfaces:
Serializable
,Comparable<SpreadSheetAggregate.Aggregate>
- Enclosing class:
- SpreadSheetAggregate
public static enum SpreadSheetAggregate.Aggregate extends Enum<SpreadSheetAggregate.Aggregate>
The types of aggregates to generate.- Version:
- $Revision: 10093 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVERAGE
the average.COUNT
the count.INTERQUARTILE
the interquartile (IQR3 - IQR1).MAX
the maximum.MEDIAN
the median.MIN
the minimum.QUARTILE25
25th quartile.QUARTILE75
75th quartile.RANGE
the range (max-min).STDEV
the std deviation (sample).STDEVP
the std deviation (population).SUM
the sum.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpreadSheetAggregate.Aggregate
valueOf(String name)
Returns the enum constant of this type with the specified name.static SpreadSheetAggregate.Aggregate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COUNT
public static final SpreadSheetAggregate.Aggregate COUNT
the count.
-
SUM
public static final SpreadSheetAggregate.Aggregate SUM
the sum.
-
MIN
public static final SpreadSheetAggregate.Aggregate MIN
the minimum.
-
MAX
public static final SpreadSheetAggregate.Aggregate MAX
the maximum.
-
RANGE
public static final SpreadSheetAggregate.Aggregate RANGE
the range (max-min).
-
AVERAGE
public static final SpreadSheetAggregate.Aggregate AVERAGE
the average.
-
MEDIAN
public static final SpreadSheetAggregate.Aggregate MEDIAN
the median.
-
STDEV
public static final SpreadSheetAggregate.Aggregate STDEV
the std deviation (sample).
-
STDEVP
public static final SpreadSheetAggregate.Aggregate STDEVP
the std deviation (population).
-
INTERQUARTILE
public static final SpreadSheetAggregate.Aggregate INTERQUARTILE
the interquartile (IQR3 - IQR1).
-
QUARTILE25
public static final SpreadSheetAggregate.Aggregate QUARTILE25
25th quartile.
-
QUARTILE75
public static final SpreadSheetAggregate.Aggregate QUARTILE75
75th quartile.
-
-
Method Detail
-
values
public static SpreadSheetAggregate.Aggregate[] 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 (SpreadSheetAggregate.Aggregate c : SpreadSheetAggregate.Aggregate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpreadSheetAggregate.Aggregate 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 nameNullPointerException
- if the argument is null
-
-