com.supermap.mapping
类 AggregationFunctionType

java.lang.Object
  继承者 com.supermap.data.Enum
      继承者 com.supermap.mapping.AggregationFunctionType

public class AggregationFunctionType
extends Enum

该枚举定义了聚合函数类型常量。 聚合函数支持对聚合字段进行求和、求最值、平均值等操作,使聚合图所反应的信息更加丰富,不再局限在聚合半径内的点数和点的权重,还可以反应聚合半径内的数据统计特性,如:表示聚合半径内的点数据基于聚合字段最值、平均值等。


字段摘要
static AggregationFunctionType AVG
          聚合字段的平均值。
static AggregationFunctionType COUNT
          聚合点的个数。
static AggregationFunctionType MAX
          聚合字段的最大值。
static AggregationFunctionType MIN
          聚合字段的最小值。
static AggregationFunctionType SUM
          聚合字段的和。
 
方法摘要
 
从类 com.supermap.data.Enum 继承的方法
equals, getEnums, getNameByValue, getNames, getPredefineValues, getValueByName, getValues, hashCode, isDefined, isDefined, name, parse, parse, toString, value
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

字段详细信息

SUM

public static final AggregationFunctionType SUM
聚合字段的和。只对数值型字段有效。


AVG

public static final AggregationFunctionType AVG
聚合字段的平均值。只对数值型字段有效。


MAX

public static final AggregationFunctionType MAX
聚合字段的最大值。只对数值型字段有效。


MIN

public static final AggregationFunctionType MIN
聚合字段的最小值。只对数值型字段有效。


COUNT

public static final AggregationFunctionType COUNT
聚合点的个数。