Package org.zkoss.pivot
Interface PivotField
-
- All Known Implementing Classes:
SimplePivotField,TabularPivotField
public interface PivotFieldPivotField defines the methods to represent a field within a pivot table.- Author:
- jumperchen, dennis
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPivotField.TypeType of pivot field, which indicates whether the field is a column field, row field, or data field.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFieldDataListener(FieldDataListener f)Adds a field data listener to the pivot field.StringgetFieldName()Returns the field name which indicates the name within the data modelGroupHandlergetGroupHandler()Returns the group handler.CalculatorgetSubtotal(int index)Returns the ith subtotal calculator on the field.Calculator[]getSubtotals()Returns a set of subtotal calculator in order.CalculatorgetSummary()Returns the summary calculatorStringgetTitle()Returns the title of the field.PivotField.TypegetType()Returns the area type.voidremoveFieldDataListener(FieldDataListener f)Removes the specified field data listener from the pivot field.
-
-
-
Method Detail
-
getTitle
String getTitle()
Returns the title of the field.
-
getType
PivotField.Type getType()
Returns the area type.- See Also:
PivotField.Type
-
getFieldName
String getFieldName()
Returns the field name which indicates the name within the data model
-
getGroupHandler
GroupHandler getGroupHandler()
Returns the group handler.
-
addFieldDataListener
void addFieldDataListener(FieldDataListener f)
Adds a field data listener to the pivot field.
-
removeFieldDataListener
void removeFieldDataListener(FieldDataListener f)
Removes the specified field data listener from the pivot field.
-
getSubtotals
Calculator[] getSubtotals()
Returns a set of subtotal calculator in order.
-
getSubtotal
Calculator getSubtotal(int index)
Returns the ith subtotal calculator on the field.
-
getSummary
Calculator getSummary()
Returns the summary calculator
-
-