Range

data class Range<V>(gt: V?, gte: V?, lt: V?, lte: V?)

A class that represents field value for range types.

Parameters

Constructors

Range
Link copied to clipboard
fun <V> Range(gt: V? = null, gte: V? = null, lt: V? = null, lte: V? = null)
is a specific type of range.

Properties

gt
Link copied to clipboard
val gt: V? = null
gte
Link copied to clipboard
val gte: V? = null
lt
Link copied to clipboard
val lt: V? = null
lte
Link copied to clipboard
val lte: V? = null