public enum AggregateFunctionNameEnum extends Enum<AggregateFunctionNameEnum>
Enum Constant and Description |
---|
AVG
平均数
|
COUNT
计数
|
IFNULL
IFNULL
|
MAX
最大值
|
MIN
最小值
|
NULLIF
NULLIF
|
SUM
求和
|
Modifier and Type | Method and Description |
---|---|
static AggregateFunctionNameEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregateFunctionNameEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateFunctionNameEnum AVG
public static final AggregateFunctionNameEnum COUNT
public static final AggregateFunctionNameEnum IFNULL
public static final AggregateFunctionNameEnum MAX
public static final AggregateFunctionNameEnum MIN
public static final AggregateFunctionNameEnum NULLIF
public static final AggregateFunctionNameEnum SUM
public static AggregateFunctionNameEnum[] values()
for (AggregateFunctionNameEnum c : AggregateFunctionNameEnum.values()) System.out.println(c);
public static AggregateFunctionNameEnum 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 © 2020 IBIT程序猿. All rights reserved.