public enum AGGREGATIONTYPE extends java.lang.Enum<AGGREGATIONTYPE>
Modifier and Type | Method and Description |
---|---|
static AGGREGATIONTYPE |
getAggregationType(java.lang.String type) |
static AGGREGATIONTYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AGGREGATIONTYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AGGREGATIONTYPE SUM
public static final AGGREGATIONTYPE MIN
public static final AGGREGATIONTYPE MAX
public static AGGREGATIONTYPE[] values()
for (AGGREGATIONTYPE c : AGGREGATIONTYPE.values()) System.out.println(c);
public static AGGREGATIONTYPE valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static AGGREGATIONTYPE getAggregationType(java.lang.String type)