Package mondrian.rolap.agg
Interface Segment.ExcludedRegion
-
- Enclosing class:
- Segment
public static interface Segment.ExcludedRegionDefinition of a region of values which are not in a segment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddescribe(StringBuilder buf)Describes this exclusion region in a human readable way.intgetArity()Returns the arity of this region.intgetCellCount()Returns an approximation of the number of cells exceluded in this region.booleanwouldContain(Object[] keys)Tells whether this exclusion region would contain the cell corresponding to the keys.
-
-
-
Method Detail
-
wouldContain
boolean wouldContain(Object[] keys)
Tells whether this exclusion region would contain the cell corresponding to the keys.
-
getArity
int getArity()
Returns the arity of this region.
-
describe
void describe(StringBuilder buf)
Describes this exclusion region in a human readable way.
-
getCellCount
int getCellCount()
Returns an approximation of the number of cells exceluded in this region.
-
-