public enum RollUpFunctionEnum extends Enum<RollUpFunctionEnum>
| 枚举常量和说明 |
|---|
AND
if the raw reference's values all are not empty, return true.
|
ARRAYCOMPACT
delete the empty strings and empty values in the raw reference's values.
|
ARRAYJOIN
the raw reference's values are joined into a string with comma.
|
ARRAYUNIQUE
deduplicate the raw reference's values.
|
AVERAGE
calculate the arithmetic average of the raw reference.
|
CONCATENATE
the raw reference's values are joined into text.
|
COUNT
count a non-empty number type for the raw reference.
|
COUNTA
count the number of non-null values for the raw reference.
|
COUNTALL
count the number of records in the raw reference.
|
MAX
the maximum value in the raw reference's values.
|
MIN
the minimum value in the raw reference's values.
|
OR
if there are at least one not-empty value in the raw reference's values, return true.
|
SUM
sum of values for the raw referenced.
|
VALUES
raw reference:
reference the data for the selected columns as-is from the associated datasheet.
|
XOR
if there are an odd number of values are not empty in the raw reference's values, return true.
|
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getValue() |
static RollUpFunctionEnum |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RollUpFunctionEnum[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RollUpFunctionEnum VALUES
public static final RollUpFunctionEnum AVERAGE
public static final RollUpFunctionEnum COUNT
public static final RollUpFunctionEnum COUNTA
public static final RollUpFunctionEnum COUNTALL
public static final RollUpFunctionEnum SUM
public static final RollUpFunctionEnum MIN
public static final RollUpFunctionEnum MAX
public static final RollUpFunctionEnum AND
public static final RollUpFunctionEnum OR
public static final RollUpFunctionEnum XOR
public static final RollUpFunctionEnum CONCATENATE
public static final RollUpFunctionEnum ARRAYJOIN
public static final RollUpFunctionEnum ARRAYUNIQUE
public static final RollUpFunctionEnum ARRAYCOMPACT
public static RollUpFunctionEnum[] values()
for (RollUpFunctionEnum c : RollUpFunctionEnum.values()) System.out.println(c);
public static RollUpFunctionEnum valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getValue()
Copyright © 2022 Vikadata LTD. All rights reserved.