public static enum Rollup.Type extends java.lang.Enum<Rollup.Type>
| Enum Constant and Description |
|---|
AND |
AVERAGE |
COUNT |
DELTA |
FIRST |
LAST |
MAX |
MIN |
NONE |
OR |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static Rollup.Type |
toEnum(java.lang.String rollup) |
static Rollup.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Rollup.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rollup.Type AND
public static final Rollup.Type OR
public static final Rollup.Type AVERAGE
public static final Rollup.Type COUNT
public static final Rollup.Type FIRST
public static final Rollup.Type LAST
public static final Rollup.Type MAX
public static final Rollup.Type MIN
public static final Rollup.Type SUM
public static final Rollup.Type DELTA
public static final Rollup.Type NONE
public static Rollup.Type[] values()
for (Rollup.Type c : Rollup.Type.values()) System.out.println(c);
public static Rollup.Type 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 Rollup.Type toEnum(java.lang.String rollup)