public enum Aggregation extends Enum<Aggregation>
| Enum Constant and Description |
|---|
AVERAGE |
COUNT |
MAXIMUM |
MINIMUM |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static Aggregation |
fromInt(int enumValue) |
String |
getBIRTType() |
int |
getEnumValue() |
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 MINIMUM
public static final Aggregation MAXIMUM
public static final Aggregation COUNT
public static final Aggregation AVERAGE
public static final Aggregation SUM
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 int getEnumValue()
public static Aggregation fromInt(int enumValue)
public String getBIRTType()
? Copyright 2013 BMC Software, Inc.