Package org.saiku.query.mdx

Examples of org.saiku.query.mdx.GenericFilter


      SortOrder so = SortOrder.valueOf(axis.getSortOrder().toString());
      sAxis.sort(so, axis.getSortIdentifierNodeName());
    }

    if (axis.getFilterCondition() != null) {
      sAxis.addFilter(new GenericFilter(axis.getFilterCondition()));
    }

    if (axis.getLimitFunction() != null) {
      NFilter nf = new NFilter(MdxFunctionType.valueOf(
          axis.getLimitFunction().toString()),
View Full Code Here

TOP

Related Classes of org.saiku.query.mdx.GenericFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.