public static class SelectStatementImpl.OrderColumnImpl extends java.lang.Object implements SelectStatement.OrderColumn
Constructor and Description |
---|
SelectStatementImpl.OrderColumnImpl(java.lang.Object pColumnReference,
boolean pDescending) |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getColumn()
Returns the ordered column.
|
boolean |
isDescending()
Returns whether ascending (false) or descending (true)
sorting is requested.
|
public SelectStatementImpl.OrderColumnImpl(java.lang.Object pColumnReference, boolean pDescending)
public java.lang.Object getColumn()
SelectStatement.OrderColumn
Returns the ordered column. Typically, this is
a ColumnReference
. However, it may as well
be a Function
or a piece of RawSQLCode
.
getColumn
in interface SelectStatement.OrderColumn
public boolean isDescending()
SelectStatement.OrderColumn
Returns whether ascending (false) or descending (true) sorting is requested.
isDescending
in interface SelectStatement.OrderColumn