public enum AggregationType extends Enum<AggregationType>
枚举常量和说明 |
---|
AGG_AVG |
AGG_COUNT |
AGG_DISTINCT_COUNT |
AGG_MAX |
AGG_MIN |
AGG_PERCENTILES |
AGG_SUM |
AGG_TOP_ROWS |
public static final AggregationType AGG_AVG
public static final AggregationType AGG_DISTINCT_COUNT
public static final AggregationType AGG_MAX
public static final AggregationType AGG_MIN
public static final AggregationType AGG_SUM
public static final AggregationType AGG_COUNT
public static final AggregationType AGG_TOP_ROWS
public static final AggregationType AGG_PERCENTILES
public static AggregationType[] values()
for (AggregationType c : AggregationType.values()) System.out.println(c);
public static AggregationType valueOf(String name)
name
- 要返回的枚举常量的名称。IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量NullPointerException
- 如果参数为空值Copyright © 2021. All Rights Reserved.