public enum AggregateFunType extends java.lang.Enum<AggregateFunType>
| Enum Constant and Description |
|---|
AVG
平均值函数
|
COUNT
数量函数
|
MAX
最大值函数
|
MIN
最小值函数
|
SUM
求和函数
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDescription() |
java.lang.String |
getName() |
int |
getOrdinal() |
static AggregateFunType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregateFunType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateFunType COUNT
public static final AggregateFunType SUM
public static final AggregateFunType AVG
public static final AggregateFunType MIN
public static final AggregateFunType MAX
public static AggregateFunType[] values()
for (AggregateFunType c : AggregateFunType.values()) System.out.println(c);
public static AggregateFunType 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 java.lang.String getName()
public java.lang.String getDescription()
public int getOrdinal()