static interface RolapResult.CellInfoContainer
RolapResult.CellInfo objects. There are two implementations,
 one that uses a Map for storage and the other uses an ObjectPool.| Modifier and Type | Method and Description | 
|---|---|
void | 
clear()
Removes all CellInfo objects from container. 
 | 
RolapResult.CellInfo | 
create(int[] pos)
Creates a new CellInfo object, adds it to the container
 a location  
pos and returns it. | 
RolapResult.CellInfo | 
lookup(int[] pos)
Gets the CellInfo object at the location  
pos. | 
int | 
size()
Returns the number of CellInfo objects in this container. 
 | 
void | 
trimToSize()
Reduces the size of the internal data structures needed to
 support the current entries. 
 | 
int size()
void trimToSize()
void clear()
RolapResult.CellInfo create(int[] pos)
pos and returns it.pos - where to store CellInfo object.RolapResult.CellInfo lookup(int[] pos)
pos.pos - where to find the CellInfo object.