isFalse

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

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

Receiver

T – the type of the entity.

Return

A Specification that checks if the property is false.


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

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

Receiver

T – the type of the entity.

Return

A Specification that checks if the property is false.