Examples of axisOrdinal()


Examples of org.olap4j.Axis.axisOrdinal()

    List<SaikuDimensionSelection> dims = ObjectUtil.convertDimensionSelections(axis.getDimensions(), query);
    Axis location = axis.getLocation();
    String so = axis.getSortOrder() == null ? null : axis.getSortOrder().name();
    SaikuAxis sax = new SaikuAxis(
        location.name(),
        location.axisOrdinal(),
        axis.getName(),
        dims,
        so,
        axis.getSortIdentifierNodeName(),
        query.getTotalFunction(axis.getName()));
View Full Code Here

Examples of org.olap4j.Axis.Standard.axisOrdinal()

    Standard standardAxis = Standard.valueOf(name);
    if (standardAxis == null) {
      throw new SaikuOlapException("Axis (" + name + ") not found for query (" + query.getName() + ")");
    }

    Axis queryAxis = Axis.Factory.forOrdinal(standardAxis.axisOrdinal());
    return query.getAxis(queryAxis);
  }

  public Cube getCube() {
    return this.query.getCube();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.