Package org.saiku.query

Examples of org.saiku.query.SortOrder


    for (QueryDimension qD : axis.getDimensions()) {
      convertDimension(qD, sAxis, sQuery);
    }

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

    if (axis.getFilterCondition() != null) {
      sAxis.addFilter(new GenericFilter(axis.getFilterCondition()));
View Full Code Here

TOP

Related Classes of org.saiku.query.SortOrder

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.