isFalse

fun <T> KProperty1<T, Boolean>.isFalse(path: Path<T>, criteriaBuilder: CriteriaBuilder): Predicate(source)

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

Receiver

T – the type of the entity.

Return

A Predicate that checks if the property is false.

Parameters

path

The path of the entity.

criteriaBuilder

The criteria builder.


@JvmName(name = "isFalseNullable")
fun <T> KProperty1<T, Boolean?>.isFalse(path: Path<T>, criteriaBuilder: CriteriaBuilder): Predicate(source)

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

Receiver

T – the type of the entity.

Return

A Predicate that checks if the property is false.

Parameters

path

The path of the entity.

criteriaBuilder

The criteria builder.