Uses of Interface
jakarta.persistence.criteria.CriteriaUpdate
Packages that use CriteriaUpdate
-
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 aCriteriaUpdateobject to perform a bulk update operation.<T> CriteriaUpdate<T> CriteriaBuilder.createCriteriaUpdate(Class<T> targetEntity, String jpql) Create aCriteriaUpdateobject representing the given Jakarta Persistence query languageUPDATEquery with the given target entity type.CriteriaBuilder.createCriteriaUpdate(String jpql) Create aCriteriaUpdateobject representing the given Jakarta Persistence query languageUPDATEquery.<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(BooleanExpression... restrictions) Modify the update query to restrict the target of the update according to the conjunction of the specified restriction predicates.CriteriaUpdate.where(Expression<Boolean> restriction) Modify the update query to restrict the target of the update according to the specified boolean expression.