public enum Aggregate extends Enum<Aggregate>
| Modifier and Type | Method and Description |
|---|---|
static Aggregate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregate AVG
public static final Aggregate COUNT
public static final Aggregate MAX
public static final Aggregate MIN
public static final Aggregate SUM
public static Aggregate[] values()
for (Aggregate c : Aggregate.values()) System.out.println(c);
public static Aggregate 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 © 2009-2012 CodeLutin. All Rights Reserved.