Uses of Interface
org.olap4j.CellSet
Packages that use CellSet
Package
Description
Provides the core classes and interfaces of the olap4j API for accessing and processing OLAP data.
Provides utility classes to display and render olap4j specific data structures.
Provides an object model for building OLAP queries programmatically (experimental).
Provides services to transform MDX parse trees (experimental).
-
Uses of CellSet in org.olap4j
Methods in org.olap4j that return CellSetModifier and TypeMethodDescriptionOlapStatement.executeOlapQuery
(String mdx) Executes an OLAP statement.OlapStatement.executeOlapQuery
(SelectNode selectNode) Executes an OLAP statement expressed as a parse tree.PreparedOlapStatement.executeQuery()
Executes the MDX query in thisPreparedOlapStatement
object and returns theCellSet
object generated by the query.Cell.getCellSet()
Returns theCellSet
that this Cell belongs to.CellSetAxis.getCellSet()
Returns theCellSet
which thisCellSetAxis
belongs to.CellSetListener.CellSetChange.getCellSet()
Returns the cell set affected by this change.Methods in org.olap4j with parameters of type CellSetModifier and TypeMethodDescriptionvoid
CellSetListener.cellSetClosed
(CellSet cellSet) Invoked when a cell set is closed.void
CellSetListener.cellSetOpened
(CellSet cellSet) Invoked when a cell set is opened. -
Uses of CellSet in org.olap4j.layout
Methods in org.olap4j.layout with parameters of type CellSetModifier and TypeMethodDescriptionvoid
CellSetFormatter.format
(CellSet cellSet, PrintWriter pw) Formats a CellSet as text to a PrintWriter.void
RectangularCellSetFormatter.format
(CellSet cellSet, PrintWriter pw) void
TraditionalCellSetFormatter.format
(CellSet cellSet, PrintWriter pw) -
Uses of CellSet in org.olap4j.query
Methods in org.olap4j.query that return CellSet -
Uses of CellSet in org.olap4j.transform
Methods in org.olap4j.transform with parameters of type CellSetModifier and TypeMethodDescriptionstatic MdxQueryTransform
StandardTransformLibrary.createDrillDownOnPositionTransform
(Axis axis, int positionOrdinalInAxis, int memberOrdinalInPosition, CellSet cellSet) static MdxQueryTransform
StandardTransformLibrary.createDrillReplaceTransform
(Axis axis, int positionOrdinalInAxis, int memberOrdinalInPosition, CellSet cellSet) static MdxQueryTransform
StandardTransformLibrary.createRollUpLevelTransform
(Axis axis, int positionOrdinalInAxis, int memberOrdinalInPosition, CellSet cellSet) Constructors in org.olap4j.transform with parameters of type CellSetModifierConstructorDescriptionDrillDownOnPositionTransform
(Axis axis, int positionOrdinalInAxis, int memberOrdinalInPosition, CellSet cellSet) Creates a DrillDownOnPositionTransform.DrillReplaceTransform
(Axis axis, int positionOrdinalInAxis, int memberOrdinalInPosition, CellSet cellSet) ctorRollUpLevelTransform
(Axis axis, int positionOrdinalInAxis, int memberOrdinalInPosition, CellSet cellSet) Creates a RollUpLevelTransform.