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