greater
infix fun <T> Property<T>.greater(value: Short): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.greater(value: Long): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.greater(value: Double): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.greater(value: Date): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.greater(value: String): PropertyQueryCondition<T>
Content copied to clipboard
infix fun <T> Property<T>.greater(value: ByteArray): PropertyQueryCondition<T>
Content copied to clipboard
Creates a "greater than ('>')" condition for this property.
inline fun <T> QueryBuilder<T>.greater(property: Property<T>, value: Short): QueryBuilder<T>
Content copied to clipboard
inline fun <T> QueryBuilder<T>.greater(property: Property<T>, value: Int): QueryBuilder<T>
Content copied to clipboard
Shortcut for greater(property, value.toLong())
inline fun <T> QueryBuilder<T>.greater(property: Property<T>, value: Float): QueryBuilder<T>
Content copied to clipboard
Shortcut for greater(property, value.toDouble())