JpaConflictUpdateAction<T> |
JpaConflictClause.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() |
|
<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> |
JpaConflictUpdateAction.set(Path<Y> attribute,
X value) |
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.
|
JpaConflictUpdateAction<T> |
JpaConflictUpdateAction.set(String attributeName,
Object value) |
Update the value of the specified attribute.
|
JpaConflictUpdateAction<T> |
JpaConflictUpdateAction.where(Expression<Boolean> restriction) |
Modify the update query to restrict the target of the update
according to the specified boolean expression.
|
JpaConflictUpdateAction<T> |
JpaConflictUpdateAction.where(Predicate... restrictions) |
Modify the update query to restrict the target of the update
according to the conjunction of the specified restriction
predicates.
|