Uses of Interface
org.hibernate.query.criteria.JpaConflictUpdateAction
Packages that use JpaConflictUpdateAction
Package
Description
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
Nodes representing
insert
statements in the SQM tree.-
Uses of JpaConflictUpdateAction in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaConflictUpdateActionModifier and TypeMethodDescriptionJpaConflictClause.createConflictUpdateAction()
Create a new conflict update action for this insert statement.@Nullable JpaConflictUpdateAction<T>
JpaConflictClause.getConflictAction()
The action to do when a conflict due to a unique constraint violation happens.default JpaConflictUpdateAction<T>
JpaConflictClause.onConflictDoUpdate()
Shorthand version for callingJpaConflictClause.onConflictDo(JpaConflictUpdateAction)
withJpaConflictClause.createConflictUpdateAction()
as argument and returning the update action.<Y> JpaConflictUpdateAction<T>
JpaConflictUpdateAction.set
(Path<Y> attribute, Expression<? extends Y> value) Update the value of the specified attribute.<Y,
X extends Y>
JpaConflictUpdateAction<T>Update the value of the specified attribute.<Y> JpaConflictUpdateAction<T>
JpaConflictUpdateAction.set
(SingularAttribute<? super T, Y> attribute, Expression<? extends Y> value) Update the value of the specified attribute.<Y,
X extends Y>
JpaConflictUpdateAction<T>JpaConflictUpdateAction.set
(SingularAttribute<? super T, Y> attribute, X value) Update the value of the specified attribute.Update the value of the specified attribute.JpaConflictUpdateAction.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.Methods in org.hibernate.query.criteria with parameters of type JpaConflictUpdateActionModifier and TypeMethodDescriptionJpaConflictClause.onConflictDo
(@Nullable JpaConflictUpdateAction<T> action) Sets the action to do on a conflict. -
Uses of JpaConflictUpdateAction in org.hibernate.query.sqm.tree.insert
Classes in org.hibernate.query.sqm.tree.insert that implement JpaConflictUpdateActionMethods in org.hibernate.query.sqm.tree.insert with parameters of type JpaConflictUpdateActionModifier and TypeMethodDescriptionSqmConflictClause.onConflictDo
(JpaConflictUpdateAction<T> action)