is False
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.
criteria Builder
The criteria builder.
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.
criteria Builder
The criteria builder.