Package anderix.datajets
Class OrderDirection
java.lang.Object
anderix.datajets.OrderDirection
Used as a parameter in
orderBy
methods in SqlBuilder.
The purpose is to define the sort order for the SQL SELECT statement returned by
SqlBuilder. Alternatively, you may use the orderByAscending
or
orderByDescending
methods to specify sort order.-
Field Summary
Modifier and TypeFieldDescriptionstatic final OrderDirection
A sort order to define ascending alphabetical or numerical data.static final OrderDirection
A sort order to define descending alphabetical or numerical data. -
Method Summary
-
Field Details
-
ASCENDING
A sort order to define ascending alphabetical or numerical data. This is theASC
keyword in SQL. -
DESCENDING
A sort order to define descending alphabetical or numerical data. This is theDESC
keyword in SQL.
-
-
Method Details