public enum SubtotalType extends java.lang.Enum<SubtotalType>
| Enum Constant and Description |
|---|
Automatic
Specifies that the subtotal type is the same as the value of
PivotDataConsolidationFunction.
|
Average
Specifies the average.
|
Count
Specifies the number of values.
|
CountNums
Specifies the number of numeric values.
|
Max
Specifies the maximum.
|
Min
Specifies the minimum.
|
None
Specifies no subtotal is used.
|
Product
Product
|
StdDev
Specifies StdDev.
|
StdDevP
Specifies StdDevP.
|
Sum
Specifies sum.
|
Var
Specifies Var.
|
VarP
Specifies VarP.
|
| Modifier and Type | Method and Description |
|---|---|
static SubtotalType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubtotalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubtotalType None
public static final SubtotalType Automatic
public static final SubtotalType Sum
public static final SubtotalType Count
public static final SubtotalType Average
public static final SubtotalType Max
public static final SubtotalType Min
public static final SubtotalType Product
public static final SubtotalType CountNums
public static final SubtotalType StdDev
public static final SubtotalType StdDevP
public static final SubtotalType Var
public static final SubtotalType VarP
public static SubtotalType[] values()
for (SubtotalType c : SubtotalType.values()) System.out.println(c);
public static SubtotalType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null