Sort

data class Sort(val columns: Collection<Sort.SortColumn>) : BaseSort

Sort allows specification of a set of entity attribute names and their associated directionality and null handling, to be applied upon processing a query specification.

Constructors

Link copied to clipboard
constructor(columns: Collection<Sort.SortColumn>)

Types

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class SortColumn(val sortAttribute: SortAttribute, val direction: Sort.Direction = Sort.Direction.ASC)

Properties

Link copied to clipboard