collectionNotContains
Creates a Predicate that tests whether a native collection column does not contain a given element. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY) and typed as Collection.
Return
A Predicate that tests whether the element is not contained in the native collection column.
Parameters
The path of the entity.
The criteria builder.
The element value to check for non-containment.
Type Parameters
the type of the entity.
the type of the element in the collection.
Creates a Predicate that tests whether a nested native collection column does not contain a given element. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY) and typed as Collection.
Return
A Predicate that tests whether the element is not contained in the nested native collection column.
Parameters
The path of the root entity.
The criteria builder.
The element value to check for non-containment.
Type Parameters
the root entity type.
the type of the element in the collection.
the type of the Collection property.