public enum TotalsRowFunction extends Enum<TotalsRowFunction>
Enum Constant and Description |
---|
AVERAGE
Average.
|
COUNT
Count of number and non-empty cells.
|
COUNT_NUMBER
Count of number cells.
|
CUSTOM
Custom function.
|
MAX
Maximum value.
|
MIN
Minimum value.
|
NONE
None.
|
STD_DEV
Standard deviation.
|
SUM
Sum.
|
VAR
Variance.
|
Modifier and Type | Method and Description |
---|---|
static TotalsRowFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TotalsRowFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TotalsRowFunction AVERAGE
public static final TotalsRowFunction COUNT
public static final TotalsRowFunction COUNT_NUMBER
public static final TotalsRowFunction CUSTOM
public static final TotalsRowFunction MAX
public static final TotalsRowFunction MIN
public static final TotalsRowFunction NONE
public static final TotalsRowFunction STD_DEV
public static final TotalsRowFunction SUM
public static final TotalsRowFunction VAR
public static TotalsRowFunction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static TotalsRowFunction[] values()
for (TotalsRowFunction c : TotalsRowFunction.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.