notEqual

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

Creates a "not equal ('<>')" condition for this property.


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

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