import Zondy from '../Zondy'
/**
* 统计方法类型枚举
* @readonly
* @enum {String}
* */
const StatisticType = {
/** StatisticType.functionMax,求最大值函数 */
functionMax: 'FUNCTION_MAX',
/** StatisticType.functionMin,求最小值函数 */
functionMin: 'FUNCTION_MIN',
/** StatisticType.functionSum,求和函数 */
functionSum: 'FUNCTION_SUM',
/** StatisticType.functionAvg,求平均数函数 */
functionAvg: 'FUNCTION_AVG',
/** StatisticType.functionCount,求总数量函数 */
functionCount: 'FUNCTION_COUNT',
/** StatisticType.functionMaxOID,求最大的OID函数 */
functionMaxOID: 'FUNCTION_MAX_OID'
}
Zondy.Enum.StatisticType = StatisticType
export default StatisticType