Package-level declarations

Functions

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

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

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

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

Link copied to clipboard
@JvmName(name = "isTrueNullable")
fun <T : Any> KProperty1<T, Boolean?>.isTrue(): Specification<T>

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

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

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