SelectOrderBy

Describes one element of the ORDER BY clause of a query.

Methods
String getSQL()
String getSQL()

Fields
static Expression columnIndexExpr
static boolean descending
static Expression expression
static boolean nullsFirst
static boolean nullsLast

columnIndexExpr

The column index expression. This can be a column index number (1 meaning the first column of the select list) or a parameter (the parameter is a number representing the column index number).

descending

If the column should be sorted descending.

expression

The order by expression.

nullsFirst

If NULL should be appear first.

nullsLast

If NULL should be appear at the end.