public enum Aggregation extends Enum<Aggregation>
| Enum Constant and Description |
|---|
AVG |
AVG_PER_SEC |
MAX |
MIN |
SUM |
| Modifier and Type | Method and Description |
|---|---|
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 AVG
public static final Aggregation AVG_PER_SEC
public static final Aggregation MIN
public static final Aggregation MAX
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 nullCopyright © 2018. All rights reserved.