Uses of Enum Class
org.olap4j.query.SortOrder

Packages that use SortOrder
Package
Description
Provides an object model for building OLAP queries programmatically (experimental).
  • Uses of SortOrder in org.olap4j.query

    Methods in org.olap4j.query that return SortOrder
    Modifier and Type
    Method
    Description
    QueryAxis.getSortOrder()
    Returns the current sort order in which this axis will be sorted.
    QueryDimension.getSortOrder()
    Returns the current order in which the dimension members are sorted.
    static SortOrder
    SortOrder.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static SortOrder[]
    SortOrder.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in org.olap4j.query with parameters of type SortOrder
    Modifier and Type
    Method
    Description
    void
    QueryAxis.sort(SortOrder order)
    Sorts the axis according to the supplied order.
    void
    QueryAxis.sort(SortOrder order, String sortEvaluationLiteral)
    Sorts the axis according to the supplied order and evaluation expression.
    void
    QueryAxis.sort(SortOrder order, List<IdentifierSegment> nameParts)
    Sorts the axis according to the supplied order and member unique name.
    void
    QueryAxis.sort(SortOrder order, Member member)
    Sorts the axis according to the supplied order and member.
    void
    QueryDimension.sort(SortOrder order)
    Sorts the dimension members by name in the order supplied as a parameter.