Package org.saiku.query.mdx

Examples of org.saiku.query.mdx.NFilter


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

    if (axis.getLimitFunction() != null) {
      NFilter nf = new NFilter(MdxFunctionType.valueOf(
          axis.getLimitFunction().toString()),
          axis.getLimitFunctionN().intValue(),
          axis.getLimitFunctionSortLiteral());
      sAxis.addFilter(nf);
    }
View Full Code Here

TOP

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

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.