Sort

enum Sort : Enum<Sort>

Represents the sorting order for a database query. Used in ORDER BY clauses to specify whether the results should be sorted in ascending or descending order.

Example

Employees
.select(
Employees.firstName,
Employees.lastName,
).orderBy(Employees.firstName, Sort.ASC)
.execute()

ASC Specifies an ascending sort order (e.g., A-Z, 1-9). DESC Specifies a descending sort order (e.g., Z-A, 9-1).

Author

MOHAMMAD AZIM ANSARI

See also

Entries

Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Functions

Link copied to clipboard
fun valueOf(value: String): Sort

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
fun values(): Array<Sort>

Returns an array containing the constants of this enum type, in the order they're declared.