Uses of Interface
mondrian.rolap.CellKey
-
Packages that use CellKey Package Description mondrian.rolap Implements the data access layer for the olap package.mondrian.rolap.agg Manages a cache of aggregates containing cell values.mondrian.spi Contains the server-provider interfaces (SPIs) which user-defined extensions to Mondrian should implement. -
-
Uses of CellKey in mondrian.rolap
Classes in mondrian.rolap that implement CellKey Modifier and Type Class Description static class
CellKey.Four
static class
CellKey.Many
static class
CellKey.One
static class
CellKey.Three
static class
CellKey.Two
static class
CellKey.Zero
Methods in mondrian.rolap that return CellKey Modifier and Type Method Description CellKey
CellKey. copy()
Returns a mutable copy of this CellKey.static CellKey
CellKey.Generator. newCellKey(int size)
Creates a CellKey with a given number of axes.static CellKey
CellKey.Generator. newCellKey(int[] pos)
Creates a CellKey populated with the given coordinates. -
Uses of CellKey in mondrian.rolap.agg
Methods in mondrian.rolap.agg with parameters of type CellKey Modifier and Type Method Description boolean
SegmentDataset. exists(CellKey pos)
Returns whether there is a value at a given coordinate.double
SegmentDataset. getDouble(CellKey pos)
Returns the value at a given coordinate, as adouble
.int
SegmentDataset. getInt(CellKey pos)
Returns the value at a given coordinate, as anint
.Object
SegmentDataset. getObject(CellKey pos)
Returns the value at a given coordinate, as anObject
.boolean
SegmentDataset. isNull(CellKey pos)
Returns whether the cell at a given coordinate is null.void
SegmentDataset. populateFrom(int[] pos, SegmentDataset data, CellKey key)
-
Uses of CellKey in mondrian.spi
Methods in mondrian.spi that return types with arguments of type CellKey Modifier and Type Method Description Map<CellKey,Object>
SegmentBody. getValueMap()
Converts contents of this segment into a cellkey/value map.
-