Uses of Class
com.sas.lsaf.query.Order

Packages that use Order
Package
Description
Contains common classes and interfaces to query information.
  • Uses of Order in com.sas.lsaf.query

    Methods in com.sas.lsaf.query that return Order
    Modifier and Type
    Method
    Description
    Order.ascending()
    Sets the sort order as ascending.
    static Order
    Order.ascending(Column column)
    Creates an Order object with the specified column sorted in ascending order.
    static Order
    Order.ascending(Column column, boolean caseSensitive)
    Creates an Order object with the specified column sorted in ascending order and indicates whether it is case-sensitive.
    Sets the sort as case-insensitive.
    Sets the sort as case-sensitive.
    Order.column(Column column)
    Sets the column to sort.
    Order.descending()
    Sets the sort order as descending.
    static Order
    Order.descending(Column column)
    Creates an Order object with the specified column sorted in descending order.
    static Order
    Order.descending(Column column, boolean caseSensitive)
    Creates an Order object with the specified column sorted in descending order and indicates whether it is case-sensitive.
    static Order
    Order.order(Column column, boolean ascending)
    Creates an Order object with the specified column and indicates whether to sort in ascending order.
    static Order
    Order.order(Column column, boolean ascending, boolean caseSensitive)
    Creates an Order object with the specified column and indicates whether to sort in ascending order and indicates whether it is case-sensitive.
    Methods in com.sas.lsaf.query that return types with arguments of type Order
    Modifier and Type
    Method
    Description
    Query.getOrder()
    Gets the order to use in the query output.
    Methods in com.sas.lsaf.query with parameters of type Order
    Modifier and Type
    Method
    Description
    final Query
    Query.order(Order... orders)
    Sets the order to use in the query output.
    Method parameters in com.sas.lsaf.query with type arguments of type Order
    Modifier and Type
    Method
    Description
    void
    Query.setOrder(List<Order> order)
    Sets the order to use in the query output.