Gte

data class Gte(val key: String, val value: Number) : PropertyFilter

Greater than or equal: propertieskey>= value

Constructors

Link copied to clipboard
constructor(key: String, value: Number)

Properties

Link copied to clipboard
val key: String
Link copied to clipboard

Functions

Link copied to clipboard
open infix fun and(other: PropertyFilter): PropertyFilter

Logical AND infix: filter1 and filter2

Link copied to clipboard
open operator fun not(): PropertyFilter

Logical NOT operator: !filter

Link copied to clipboard
open infix fun or(other: PropertyFilter): PropertyFilter

Logical OR infix: filter1 or filter2