adams.data.conversion
Enum AggregateSpreadSheet.Aggregate

java.lang.Object
  extended by java.lang.Enum<AggregateSpreadSheet.Aggregate>
      extended by adams.data.conversion.AggregateSpreadSheet.Aggregate
All Implemented Interfaces:
Serializable, Comparable<AggregateSpreadSheet.Aggregate>
Enclosing class:
AggregateSpreadSheet

public static enum AggregateSpreadSheet.Aggregate
extends Enum<AggregateSpreadSheet.Aggregate>

The types of aggregates to generate.

Version:
$Revision: 6289 $
Author:
fracpete (fracpete at waikato dot ac dot nz)

Enum Constant Summary
AVERAGE
          the average.
INTERQUARTILE
          the interquartile (IQR3 - IQR1).
MAX
          the maximum.
MEDIAN
          the median.
MIN
          the minimum.
STDEV
          the std deviation (sample).
STDEVP
          the std deviation (population).
SUM
          the sum.
 
Method Summary
static AggregateSpreadSheet.Aggregate valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AggregateSpreadSheet.Aggregate[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUM

public static final AggregateSpreadSheet.Aggregate SUM
the sum.


MIN

public static final AggregateSpreadSheet.Aggregate MIN
the minimum.


MAX

public static final AggregateSpreadSheet.Aggregate MAX
the maximum.


AVERAGE

public static final AggregateSpreadSheet.Aggregate AVERAGE
the average.


MEDIAN

public static final AggregateSpreadSheet.Aggregate MEDIAN
the median.


STDEV

public static final AggregateSpreadSheet.Aggregate STDEV
the std deviation (sample).


STDEVP

public static final AggregateSpreadSheet.Aggregate STDEVP
the std deviation (population).


INTERQUARTILE

public static final AggregateSpreadSheet.Aggregate INTERQUARTILE
the interquartile (IQR3 - IQR1).

Method Detail

values

public static AggregateSpreadSheet.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 (AggregateSpreadSheet.Aggregate c : AggregateSpreadSheet.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 AggregateSpreadSheet.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 name
NullPointerException - if the argument is null


Copyright © 2013 University of Waikato, Hamilton, NZ. All Rights Reserved.