Uses of Interface
jakarta.persistence.criteria.CriteriaDelete
Packages that use CriteriaDelete
Package
Description
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
Jakarta Persistence Criteria API
This package defines the central Hibernate APIs, beginning with
SessionFactory, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session and StatelessSession,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate.Everything related to HQL/JPQL, native SQL, and criteria queries.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
Nodes representing
delete statements in the SQM tree.-
Uses of CriteriaDelete in jakarta.persistence
Methods in jakarta.persistence with parameters of type CriteriaDeleteModifier and TypeMethodDescriptionEntityManager.createQuery(CriteriaDelete deleteQuery) Create an instance ofQueryfor executing a criteria delete query. -
Uses of CriteriaDelete in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return CriteriaDeleteModifier and TypeMethodDescription<T> CriteriaDelete<T>CriteriaBuilder.createCriteriaDelete(Class<T> targetEntity) Create aCriteriaDeletequery object to perform a bulk delete operation.CriteriaDelete.where(Expression<Boolean> restriction) Modify the delete query to restrict the target of the deletion according to the specified boolean expression.Modify the delete query to restrict the target of the deletion according to the conjunction of the specified restriction predicates. -
Uses of CriteriaDelete in org.hibernate
Methods in org.hibernate with parameters of type CriteriaDelete -
Uses of CriteriaDelete in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type CriteriaDeleteModifier and TypeMethodDescriptionSessionDelegatorBaseImpl.createMutationQuery(CriteriaDelete deleteQuery) SessionLazyDelegator.createMutationQuery(CriteriaDelete deleteQuery) SharedSessionDelegatorBaseImpl.createMutationQuery(CriteriaDelete deleteQuery) SessionDelegatorBaseImpl.createQuery(CriteriaDelete deleteQuery) SessionLazyDelegator.createQuery(CriteriaDelete deleteQuery) Deprecated.SharedSessionDelegatorBaseImpl.createQuery(CriteriaDelete deleteQuery) -
Uses of CriteriaDelete in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type CriteriaDeleteModifier and TypeMethodDescriptionAbstractSharedSessionContract.createMutationQuery(CriteriaDelete deleteQuery) AbstractSharedSessionContract.createQuery(CriteriaDelete criteriaDelete) -
Uses of CriteriaDelete in org.hibernate.query
Methods in org.hibernate.query with parameters of type CriteriaDeleteModifier and TypeMethodDescriptionQueryProducer.createMutationQuery(CriteriaDelete deleteQuery) Create aMutationQueryfrom the given delete criteria treeQueryProducer.createQuery(CriteriaDelete deleteQuery) Deprecated. -
Uses of CriteriaDelete in org.hibernate.query.criteria
Subinterfaces of CriteriaDelete in org.hibernate.query.criteria -
Uses of CriteriaDelete in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type CriteriaDeleteModifier and TypeMethodDescriptionQueryProducerImplementor.createMutationQuery(CriteriaDelete deleteQuery) QueryProducerImplementor.createQuery(CriteriaDelete deleteQuery) Deprecated. -
Uses of CriteriaDelete in org.hibernate.query.sqm.tree.delete
Classes in org.hibernate.query.sqm.tree.delete that implement CriteriaDelete
QueryProducer.createMutationQuery(CriteriaDelete)