public enum PivotFieldCalculationType extends Enum<PivotFieldCalculationType>
PivotField
subtotal function.Enum Constant and Description |
---|
AVERAGE
The average of the values.
|
COUNT
The number of data values.
|
COUNT_NUMS
The number of data values that are numbers.
|
MAX
The largest value.
|
MIN
The smallest value.
|
PRODUCT
The product of the values.
|
STD_DEV
An estimate of the standard deviation of a population, where the sample is a subset of the entire population.
|
STD_DEVP
The standard deviation of a population, where the population is all of the data to be summarized.
|
SUM
The sum of the values.
|
VAR
An estimate of the variance of a population, where the sample is a subset of the entire population.
|
VARP
The variance of a population, where the population is all of the data to be summarized.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static PivotFieldCalculationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PivotFieldCalculationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PivotFieldCalculationType AVERAGE
public static final PivotFieldCalculationType COUNT
public static final PivotFieldCalculationType COUNT_NUMS
public static final PivotFieldCalculationType MAX
public static final PivotFieldCalculationType MIN
public static final PivotFieldCalculationType PRODUCT
public static final PivotFieldCalculationType STD_DEV
public static final PivotFieldCalculationType STD_DEVP
public static final PivotFieldCalculationType SUM
public static final PivotFieldCalculationType VAR
public static final PivotFieldCalculationType VARP
public String toString()
toString
in class Enum<PivotFieldCalculationType>
public static PivotFieldCalculationType 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 PivotFieldCalculationType[] values()
for (PivotFieldCalculationType c : PivotFieldCalculationType.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.