|
TUM CCSM Commons | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<EAggregationStrategy>
edu.tum.cs.commons.math.EAggregationStrategy
public enum EAggregationStrategy
Enumeration for different aggregation strategies.
| Enum Constant Summary | |
|---|---|
MAX
Maximum aggregation, see MaxAggregator. |
|
MEAN
Mean aggregation, see MeanAggregator. |
|
MEDIAN
Median aggregation, see MedianAggregator. |
|
MIN
Minimum aggregation, see MinAggregator. |
|
SUM
Sum aggregation, see SumAggregator. |
|
| Method Summary | |
|---|---|
IAggregator |
getAggregator()
Get aggregator. |
static EAggregationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EAggregationStrategy[] |
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 EAggregationStrategy SUM
SumAggregator.
public static final EAggregationStrategy MAX
MaxAggregator.
public static final EAggregationStrategy MIN
MinAggregator.
public static final EAggregationStrategy MEAN
MeanAggregator.
public static final EAggregationStrategy MEDIAN
MedianAggregator.
| Method Detail |
|---|
public static EAggregationStrategy[] values()
for (EAggregationStrategy c : EAggregationStrategy.values()) System.out.println(c);
public static EAggregationStrategy 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 nullpublic IAggregator getAggregator()
|
TUM CCSM Commons | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||