Package mondrian.parser
Interface MdxParserValidator.QueryPartFactory
-
- All Known Implementing Classes:
Parser.FactoryImpl
- Enclosing interface:
- MdxParserValidator
public static interface MdxParserValidator.QueryPartFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DrillThrough
makeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, List<Exp> returnList)
Creates aDrillThrough
object.Explain
makeExplain(QueryPart query)
Creates anExplain
object.Query
makeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation)
Creates aQuery
object.
-
-
-
Method Detail
-
makeQuery
Query makeQuery(Statement statement, Formula[] formulae, QueryAxis[] axes, String cube, Exp slicer, QueryPart[] cellProps, boolean strictValidation)
Creates aQuery
object. Override this function to make your kind of query.
-
makeDrillThrough
DrillThrough makeDrillThrough(Query query, int maxRowCount, int firstRowOrdinal, List<Exp> returnList)
Creates aDrillThrough
object.
-
-