SortOrder

Represents the SQL keywords for defining sort order in an ORDER BY clause.

Entries

Link copied to clipboard

The SQL keyword ASC for sorting records in ascending order.

Link copied to clipboard

The SQL keyword DESC for sorting records in descending order.

Link copied to clipboard

The SQL keyword ASC for sorting records in ascending order, combined with NULLS FIRST to position SQL NULL values at the start.

Link copied to clipboard

The SQL keyword DESC for sorting records in descending order, combined with NULLS FIRST to position SQL NULL values at the start preceding non-null records.

Link copied to clipboard

The SQL keyword ASC for sorting records in ascending order, combined with NULLS LAST to position SQL NULL values at the end following non-null records.

Link copied to clipboard

The SQL keyword DESC for sorting records in descending order, combined with NULLS LAST to position SQL NULL values at the end.

Properties

Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard
Link copied to clipboard

Functions

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

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

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