Uses of Interface
org.hibernate.query.specification.UpdateSpecification
Packages that use UpdateSpecification
Package
Description
Support for SelectionSpecification
and MutationSpecification which
is similar in concept to criteria queries, but focused on ease-of-use and less verbosity.
-
Uses of UpdateSpecification in org.hibernate.query.specification
Methods in org.hibernate.query.specification that return UpdateSpecificationModifier and TypeMethodDescriptionUpdateSpecification.assign
(Assignment<? super T> assignment) Add an assigment to a field or property of the target entity.UpdateSpecification.augment
(MutationSpecification.Augmentation<T> augmentation) static <T> UpdateSpecification
<T> UpdateSpecification.create
(CriteriaUpdate<T> criteriaUpdate) Returns a specification reference which can be used to programmatically, iteratively build a MutationQuery based on the given criteria update, allowing the addition of restrictions and assignments.static <T> UpdateSpecification
<T> Returns a specification reference which can be used to programmatically, iteratively build a MutationQuery which updates the given entity type.UpdateSpecification.reassign
(List<? extends Assignment<? super T>> assignments) Sets the assignments to fields or properties of the target entity.UpdateSpecification.restrict
(Restriction<? super T> restriction) UpdateSpecification.validate
(CriteriaBuilder builder)