Package mondrian.olap
Interface AxisOrdinal
-
- All Known Implementing Classes:
AxisOrdinal.StandardAxisOrdinal
public interface AxisOrdinal
AxisOrdinal
describes the allowable values for an axis code.- Since:
- Feb 21, 2003
- Author:
- jhyde
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
AxisOrdinal.StandardAxisOrdinal
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isFilter()
Returns whether this is the filter (slicer) axis.int
logicalOrdinal()
Returns the ordinal of this axis.String
name()
Returns the name of this axis, e.g.
-
-
-
Method Detail
-
name
String name()
Returns the name of this axis, e.g. "COLUMNS", "SLICER", "AXIS(17)".- Returns:
- Name of the axis
-
logicalOrdinal
int logicalOrdinal()
Returns the ordinal of this axis.AxisOrdinal.StandardAxisOrdinal.COLUMNS
= 0,AxisOrdinal.StandardAxisOrdinal.ROWS
= 1, etc.- Returns:
- ordinal of this axis
-
isFilter
boolean isFilter()
Returns whether this is the filter (slicer) axis.- Returns:
- whether this is the filter axis
-
-