public interface Order extends QueryElement
ORDER BY
part of a Query
and is used to sort the result. Typically an
order by clause consists of an expression and a keyword telling if the
results should be sorted in ascending or descending order.
SELECT usr FROM UserData usr ORDER BY usr.name ASC
Order elements can be created by the Orders
factory class.
getChildren, toQl