isFalse

fun <T : Any> KProperty1<T, Boolean>.isFalse(): PredicateSpecification<T>(source)

Creates a PredicateSpecification that checks if the Boolean property is false.

Receiver

T – the type of the entity.

Return

A PredicateSpecification that checks if the property is false.


@JvmName(name = "isFalseNullable")
fun <T : Any> KProperty1<T, Boolean?>.isFalse(): PredicateSpecification<T>(source)

Creates a PredicateSpecification that checks if the nullable Boolean property is false.

Receiver

T – the type of the entity.

Return

A PredicateSpecification that checks if the property is false.