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