Package | Description |
---|---|
com.sas.lsaf.query |
Contains common classes and interfaces to query information.
|
Modifier and Type | Method and Description |
---|---|
Order |
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. |
Order |
Order.caseInsensitive()
Sets the sort as case-insensitive.
|
Order |
Order.caseSensitive()
Sets the sort as case-sensitive.
|
Order |
Order.column(Column column)
Sets the column to sort.
|
Order |
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. |
Modifier and Type | Method and Description |
---|---|
List<Order> |
Query.getOrder()
Gets the order to use in the query output.
|
Modifier and Type | Method and Description |
---|---|
Query |
Query.order(Order... orders)
Sets the order to use in the query output.
|
Modifier and Type | Method and Description |
---|---|
void |
Query.setOrder(List<Order> order)
Sets the order to use in the query output.
|
<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>