equal

infix fun <T> Property<T>.equal(value: Boolean): PropertyQueryCondition<T>
infix fun <T> Property<T>.equal(value: Short): PropertyQueryCondition<T>
infix fun <T> Property<T>.equal(value: Int): PropertyQueryCondition<T>
infix fun <T> Property<T>.equal(value: Long): PropertyQueryCondition<T>
infix fun <T> Property<T>.equal(value: Date): PropertyQueryCondition<T>
infix fun <T> Property<T>.equal(value: String): PropertyQueryCondition<T>
infix fun <T> Property<T>.equal(value: ByteArray): PropertyQueryCondition<T>

Creates an "equal ('=')" condition for this property.


inline fun <T> QueryBuilder<T>.equal(property: Property<T>, value: Short): QueryBuilder<T>
inline fun <T> QueryBuilder<T>.equal(property: Property<T>, value: Int): QueryBuilder<T>

Shortcut for equal(property, value.toLong())


inline fun <T> QueryBuilder<T>.equal(property: Property<T>, value: Float, tolerance: Float): QueryBuilder<T>

Shortcut for equal(property, value.toDouble(), tolerance.toDouble())