public enum PivotFieldDisplayFormat extends Enum<PivotFieldDisplayFormat>
PivotField
display format.Enum Constant and Description |
---|
DIFFERENCE
The difference from the value of the Base item in the Base field.
|
INDEX
Data calculated as ((value in cell) x (Grand Total of Grand Totals)) / ((Grand Row Total) x (Grand Column Total)).
|
NORMAL
No calculation.
|
PERCENT
Percentage of the value of the Base item in the Base field.
|
PERCENTAGE_OF_COLUMN
Percentage of the total for the column or series.
|
PERCENTAGE_OF_DIFFERENCE
Percentage difference from the value of the Base item in the Base field.
|
PERCENTAGE_OF_PARENT
Percentage of the total of the specified parent Base field.
|
PERCENTAGE_OF_PARENT_COLUMN
Percentage of the total of the parent column.
|
PERCENTAGE_OF_PARENT_ROW
Percentage of the total of the parent row.
|
PERCENTAGE_OF_ROW
Percentage of the total for the row or category.
|
PERCENTAGE_OF_RUNNING_TOTAL
Rank largest to smallest.
|
PERCENTAGE_OF_TOTAL
Percentage of the grand total of all the data or data points in the report.
|
RANK_ASCENDING
Rank smallest to largest.
|
RANK_DECENDING
Rank largest to smallest.
|
RUN_TOTAL
Data for successive items in the Base field as a running total.
|
Modifier and Type | Method and Description |
---|---|
static PivotFieldDisplayFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PivotFieldDisplayFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PivotFieldDisplayFormat DIFFERENCE
public static final PivotFieldDisplayFormat INDEX
public static final PivotFieldDisplayFormat NORMAL
public static final PivotFieldDisplayFormat PERCENT
public static final PivotFieldDisplayFormat PERCENTAGE_OF_COLUMN
public static final PivotFieldDisplayFormat PERCENTAGE_OF_DIFFERENCE
public static final PivotFieldDisplayFormat PERCENTAGE_OF_PARENT
public static final PivotFieldDisplayFormat PERCENTAGE_OF_PARENT_COLUMN
public static final PivotFieldDisplayFormat PERCENTAGE_OF_PARENT_ROW
public static final PivotFieldDisplayFormat PERCENTAGE_OF_ROW
public static final PivotFieldDisplayFormat PERCENTAGE_OF_RUNNING_TOTAL
public static final PivotFieldDisplayFormat PERCENTAGE_OF_TOTAL
public static final PivotFieldDisplayFormat RANK_ASCENDING
public static final PivotFieldDisplayFormat RANK_DECENDING
public static final PivotFieldDisplayFormat RUN_TOTAL
public static PivotFieldDisplayFormat 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 PivotFieldDisplayFormat[] values()
for (PivotFieldDisplayFormat c : PivotFieldDisplayFormat.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.