Uses of Interface
javax.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
-
Uses of CriteriaUpdate in javax.persistence
Methods in javax.persistence with parameters of type CriteriaUpdateModifier and TypeMethodDescriptionEntityManager.createQuery
(CriteriaUpdate updateQuery) Create an instance ofQuery
for executing a criteria update query. -
Uses of CriteriaUpdate in javax.persistence.criteria
Methods in javax.persistence.criteria that return CriteriaUpdateModifier and TypeMethodDescription<T> CriteriaUpdate
<T> CriteriaBuilder.createCriteriaUpdate
(Class<T> targetEntity) Create aCriteriaUpdate
query object to perform a bulk update operation.Update the value of the specified attribute.<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.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.