com.supermap.analyst.spatialstatistics
类 StatisticsType

java.lang.Object
  继承者 com.supermap.data.Enum
      继承者 com.supermap.analyst.spatialstatistics.StatisticsType

public class StatisticsType
extends Enum

该类定义了数据集进行空间度量后的字段统计类型常量。


字段摘要
static StatisticsType FIRST
          保留第一个对象的字段值。
static StatisticsType LAST
          保留最后一个对象的字段值。
static StatisticsType MAX
          统计字段的最大值。
static StatisticsType MEAN
          统计字段的平均值。
static StatisticsType MEDIAN
          统计字段的中位数。
static StatisticsType MIN
          统计字段的最小值。
static StatisticsType 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
 

字段详细信息

MAX

public static final StatisticsType MAX
统计字段的最大值。只对数值型字段有效。


MIN

public static final StatisticsType MIN
统计字段的最小值。只对数值型字段有效。


SUM

public static final StatisticsType SUM
统计字段的和。只对数值型字段有效。


MEAN

public static final StatisticsType MEAN
统计字段的平均值。只对数值型字段有效。


FIRST

public static final StatisticsType FIRST
保留第一个对象的字段值。对数值、布尔、时间和文本型字段都有效。


LAST

public static final StatisticsType LAST
保留最后一个对象的字段值。对数值、布尔、时间和文本型字段都有效。


MEDIAN

public static final StatisticsType MEDIAN
统计字段的中位数。只对数值型字段有效。