251252253254255256257
/** * Sort the results by the property in ascending order */ public AuditOrder asc() { return new PropertyAuditOrder(propertyNameGetter, true); }
258259260261262263264
/** * Sort the results by the property in descending order */ public AuditOrder desc() { return new PropertyAuditOrder(propertyNameGetter, false); }
250251252253254255256
257258259260261262263
252253254255256257258
259260261262263264265
261262263264265266267
268269270271272273274