Uses of Interface
org.hibernate.query.assignment.Assignment
Packages that use Assignment
Package
Description
Support for assignment
with
MutationSpecification
.Support for SelectionSpecification
and MutationSpecification which
is similar in concept to criteria queries, but focused on ease-of-use and less verbosity.
-
Uses of Assignment in org.hibernate.query.assignment
Methods in org.hibernate.query.assignment that return AssignmentModifier and TypeMethodDescriptionstatic <T,
X> Assignment <T> Assignment.set
(SingularAttribute<T, X> attribute, Path<T, X> value) An assigment of the entity or embeddable field or property identified by the given path from the root entity to the given attribute of the root entity.static <T,
X> Assignment <T> Assignment.set
(SingularAttribute<T, X> attribute, X value) An assigment of the given literal value to the given attribute of the root entity.static <T,
X> Assignment <T> An assigment of one entity or embeddable field or property to another entity or embeddable field or property, each identified by a given path from the root entity.static <T,
X> Assignment <T> An assigment of the given literal value to the entity or embeddable field or property identified by the given path from the root entity. -
Uses of Assignment in org.hibernate.query.specification
Methods in org.hibernate.query.specification with parameters of type AssignmentModifier and TypeMethodDescriptionUpdateSpecification.assign
(Assignment<? super T> assignment) Add an assigment to a field or property of the target entity.Method parameters in org.hibernate.query.specification with type arguments of type AssignmentModifier and TypeMethodDescriptionUpdateSpecification.reassign
(List<? extends Assignment<? super T>> assignments) Sets the assignments to fields or properties of the target entity.