public enum PivotCellType extends java.lang.Enum<PivotCellType>
| Enum Constant and Description |
|---|
BlankCell
A structural blank cell in the PivotTable.
|
CustomSubtotal
A cell in the row or column area that is a custom subtotal.
|
DataField
A data field label (not the Data button).
|
DataPivotField
The Data button.
|
GrandTotal
A cell in a row or column area which is a grand total.
|
PageFieldItem
The cell that shows the selected item of a Page field.
|
PivotField
The button for a field (not the Data button).
|
PivotItem
A cell in the row or column area which is not a subtotal, grand total, custom subtotal, or blank line.
|
Subtotal
A cell in the row or column area which is a subtotal.
|
Value
Any cell in the data area (except a blank row).
|
| Modifier and Type | Method and Description |
|---|---|
static PivotCellType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PivotCellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PivotCellType Value
public static final PivotCellType PivotItem
public static final PivotCellType Subtotal
public static final PivotCellType GrandTotal
public static final PivotCellType DataField
public static final PivotCellType PivotField
public static final PivotCellType PageFieldItem
public static final PivotCellType CustomSubtotal
public static final PivotCellType DataPivotField
public static final PivotCellType BlankCell
public static PivotCellType[] values()
for (PivotCellType c : PivotCellType.values()) System.out.println(c);
public static PivotCellType 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