Uses of Interface
jakarta.persistence.criteria.CriteriaUpdate
Packages that use CriteriaUpdate
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
update statements in the SQM tree.-
Uses of CriteriaUpdate in jakarta.persistence
Methods in jakarta.persistence with parameters of type CriteriaUpdateModifier and TypeMethodDescriptionEntityManager.createQuery(CriteriaUpdate updateQuery) Create an instance ofQueryfor executing a criteria update query. -
Uses of CriteriaUpdate in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return CriteriaUpdateModifier and TypeMethodDescription<T> CriteriaUpdate<T>CriteriaBuilder.createCriteriaUpdate(Class<T> targetEntity) Create aCriteriaUpdatequery object to perform a bulk update operation.<Y> CriteriaUpdate<T>CriteriaUpdate.set(Path<Y> attribute, Expression<? extends Y> value) Update the value of the specified attribute.<Y,X extends Y>
CriteriaUpdate<T>Update the value of the specified attribute.<Y> CriteriaUpdate<T>CriteriaUpdate.set(SingularAttribute<? super T, Y> attribute, Expression<? extends Y> value) Update the value of the specified attribute.<Y,X extends Y>
CriteriaUpdate<T>CriteriaUpdate.set(SingularAttribute<? super T, Y> attribute, X value) Update the value of the specified attribute.Update the value of the specified attribute.CriteriaUpdate.where(Expression<Boolean> restriction) Modify the update query to restrict the target of the update according to the specified boolean expression.Modify the update query to restrict the target of the update according to the conjunction of the specified restriction predicates. -
Uses of CriteriaUpdate in org.hibernate
Methods in org.hibernate with parameters of type CriteriaUpdate -
Uses of CriteriaUpdate in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type CriteriaUpdateModifier and TypeMethodDescriptionSessionDelegatorBaseImpl.createMutationQuery(CriteriaUpdate updateQuery) SessionLazyDelegator.createMutationQuery(CriteriaUpdate updateQuery) SharedSessionDelegatorBaseImpl.createMutationQuery(CriteriaUpdate updateQuery) SessionDelegatorBaseImpl.createQuery(CriteriaUpdate updateQuery) SessionLazyDelegator.createQuery(CriteriaUpdate updateQuery) Deprecated.SharedSessionDelegatorBaseImpl.createQuery(CriteriaUpdate updateQuery) -
Uses of CriteriaUpdate in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type CriteriaUpdateModifier and TypeMethodDescriptionAbstractSharedSessionContract.createMutationQuery(CriteriaUpdate updateQuery) AbstractSharedSessionContract.createQuery(CriteriaUpdate criteriaUpdate) -
Uses of CriteriaUpdate in org.hibernate.query
Methods in org.hibernate.query with parameters of type CriteriaUpdateModifier and TypeMethodDescriptionQueryProducer.createMutationQuery(CriteriaUpdate updateQuery) Create aMutationQueryfrom the given update criteria treeQueryProducer.createQuery(CriteriaUpdate updateQuery) Deprecated. -
Uses of CriteriaUpdate in org.hibernate.query.criteria
Subinterfaces of CriteriaUpdate in org.hibernate.query.criteria -
Uses of CriteriaUpdate in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type CriteriaUpdateModifier and TypeMethodDescriptionQueryProducerImplementor.createMutationQuery(CriteriaUpdate updateQuery) QueryProducerImplementor.createQuery(CriteriaUpdate updateQuery) Deprecated. -
Uses of CriteriaUpdate in org.hibernate.query.sqm.tree.update
Classes in org.hibernate.query.sqm.tree.update that implement CriteriaUpdate
QueryProducer.createMutationQuery(CriteriaUpdate)