Package-level declarations

Functions

Link copied to clipboard
@JvmName(name = "likeNullable")
fun <T> KProperty1<T, String?>.like(path: Path<T>, criteriaBuilder: CriteriaBuilder, pattern: String): Predicate

Creates a Predicate that checks if the property matches the given pattern (nullable version).

fun <T> KProperty1<T, String>.like(path: Path<T>, criteriaBuilder: CriteriaBuilder, pattern: String): Predicate

Creates a Predicate that checks if the property matches the given pattern.

Link copied to clipboard
@JvmName(name = "notLikeNullable")
fun <T> KProperty1<T, String?>.notLike(path: Path<T>, criteriaBuilder: CriteriaBuilder, pattern: String): Predicate

Creates a Predicate that checks if the property does not match the given pattern (nullable version).

fun <T> KProperty1<T, String>.notLike(path: Path<T>, criteriaBuilder: CriteriaBuilder, pattern: String): Predicate

Creates a Predicate that checks if the property does not match the given pattern.