collectionNotIntersects
Creates a PredicateSpecification that tests whether a native collection column does not share any element with the given sub-collection. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY) and typed as Collection.
Return
A PredicateSpecification that tests whether the native collection column does not intersect with the given sub-collection.
Parameters
the sub-collection to check for overlap.
Type Parameters
the type of the entity.
the type of the element in the collection.
Creates a PredicateSpecification that tests whether a nested native collection column does not share any element with the given sub-collection. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY) and typed as Collection.
Return
A PredicateSpecification that tests whether the nested native collection column does not intersect with the given sub-collection.
Parameters
the sub-collection to check for overlap.
Type Parameters
the root entity type.
the type of the element in the collection.
the type of the Collection property.