266267268269270271272
/** * Sort the results by the property in ascending order */ public AuditOrder asc() { return new PropertyAuditOrder( propertyNameGetter, true ); }
273274275276277278279
/** * Sort the results by the property in descending order */ public AuditOrder desc() { return new PropertyAuditOrder( propertyNameGetter, false ); }
281282283284285286287
288289290291292293294