Package-level declarations

Functions

Link copied to clipboard
fun <ROOT : Any, E, PROP : Collection<E>> NestedProperty<ROOT, PROP>.arrayContains(value: E): PredicateSpecification<ROOT>

Creates a PredicateSpecification that tests whether an element is contained in a nested native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).

fun <T : Any, E> KProperty1<T, Collection<E>>.arrayContains(value: E): PredicateSpecification<T>

Creates a PredicateSpecification that tests whether an element is contained in a native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).

Link copied to clipboard
fun <ROOT : Any, E, PROP : Collection<E>> NestedProperty<ROOT, PROP>.arrayNotContains(value: E): PredicateSpecification<ROOT>

Creates a PredicateSpecification that tests whether an element is not contained in a nested native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).

fun <T : Any, E> KProperty1<T, Collection<E>>.arrayNotContains(value: E): PredicateSpecification<T>

Creates a PredicateSpecification that tests whether an element is not contained in a native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).