Package mondrian.olap
Interface AxisOrdinal
-
- All Known Implementing Classes:
AxisOrdinal.StandardAxisOrdinal
public interface AxisOrdinalAxisOrdinaldescribes the allowable values for an axis code.- Since:
- Feb 21, 2003
- Author:
- jhyde
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAxisOrdinal.StandardAxisOrdinal
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisFilter()Returns whether this is the filter (slicer) axis.intlogicalOrdinal()Returns the ordinal of this axis.Stringname()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
-
-