public enum Aggregation extends Enum<Aggregation>
SimpleMeasureDefinition| Enum Constant and Description |
|---|
AVG |
COUNT |
MAX |
MEDIAN |
MIN |
RUNSUM |
SUM |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Aggregation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregation SUM
public static final Aggregation COUNT
public static final Aggregation AVG
public static final Aggregation MIN
public static final Aggregation MAX
public static final Aggregation MEDIAN
public static final Aggregation RUNSUM
public static Aggregation[] values()
for (Aggregation c : Aggregation.values()) System.out.println(c);
public static Aggregation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<Aggregation>Copyright © 2017. All rights reserved.