Is a ordered list of OrderBy.Property objects each specifying a property and whether it is ascending or descending order.
Typically you will not construct an OrderBy yourself but use one that exists on the Query object.
109110111112113114115116117
* Move a OrderBy.Property from the main query to this query join. */ @SuppressWarnings("rawtypes") public void addSecJoinOrderProperty(OrderBy.Property orderProp) { if (orderBy == null) { orderBy = new OrderBy(); } orderBy.add(orderProp); }