ColumnIdSorting

data class ColumnIdSorting(id: String?, strategy: Sorting)

Wrapping class to group the id of a Column with the sorting strategy. This is the base for the type `T` independent SortingPlan which itself is necessary for the internalState.

Constructors

ColumnIdSorting
Link copied to clipboard
js
fun ColumnIdSorting(id: String?, strategy: Sorting = Sorting.NONE)

Types

Companion
Link copied to clipboard
js
object Companion

Functions

component1
Link copied to clipboard
js
operator fun component1(): String?
component2
Link copied to clipboard
js
operator fun component2(): Sorting
copy
Link copied to clipboard
js
fun copy(id: String?, strategy: Sorting = Sorting.NONE): ColumnIdSorting
equals
Link copied to clipboard
js
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
js
open override fun hashCode(): Int
toString
Link copied to clipboard
js
open override fun toString(): String

Properties

id
Link copied to clipboard
js
val id: String?
strategy
Link copied to clipboard
js
val strategy: Sorting