Uses of Interface
jakarta.persistence.criteria.CriteriaDelete
-
Packages that use CriteriaDelete Package Description jakarta.persistence Jakarta Persistence is the API for the management for persistence and object/relational mapping.jakarta.persistence.criteria Jakarta Persistence Criteria API -
-
Uses of CriteriaDelete in jakarta.persistence
Methods in jakarta.persistence with parameters of type CriteriaDelete Modifier and Type Method Description Query
EntityManager. createQuery(CriteriaDelete deleteQuery)
Create an instance ofQuery
for executing a criteria delete query. -
Uses of CriteriaDelete in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return CriteriaDelete Modifier and Type Method Description <T> CriteriaDelete<T>
CriteriaBuilder. createCriteriaDelete(Class<T> targetEntity)
Create aCriteriaDelete
query object to perform a bulk delete operation.CriteriaDelete<T>
CriteriaDelete. where(Expression<Boolean> restriction)
Modify the delete query to restrict the target of the deletion according to the specified boolean expression.CriteriaDelete<T>
CriteriaDelete. where(Predicate... restrictions)
Modify the delete query to restrict the target of the deletion according to the conjunction of the specified restriction predicates.
-