|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<AggregateSpreadSheet.Aggregate>
adams.data.conversion.AggregateSpreadSheet.Aggregate
public static enum AggregateSpreadSheet.Aggregate
The types of aggregates to generate.
| 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 |
|---|
public static final AggregateSpreadSheet.Aggregate SUM
public static final AggregateSpreadSheet.Aggregate MIN
public static final AggregateSpreadSheet.Aggregate MAX
public static final AggregateSpreadSheet.Aggregate AVERAGE
public static final AggregateSpreadSheet.Aggregate MEDIAN
public static final AggregateSpreadSheet.Aggregate STDEV
public static final AggregateSpreadSheet.Aggregate STDEVP
public static final AggregateSpreadSheet.Aggregate INTERQUARTILE
| Method Detail |
|---|
public static AggregateSpreadSheet.Aggregate[] values()
for (AggregateSpreadSheet.Aggregate c : AggregateSpreadSheet.Aggregate.values()) System.out.println(c);
public static AggregateSpreadSheet.Aggregate valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||