Class ConflictClause
- java.lang.Object
-
- org.hibernate.sql.ast.tree.insert.ConflictClause
-
public class ConflictClause extends Object
- Since:
- 6.5
-
-
Constructor Summary
Constructors Constructor Description ConflictClause(@Nullable String constraintName, List<String> constraintColumnNames, List<Assignment> assignments, @Nullable Predicate predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Assignment>
getAssignments()
List<String>
getConstraintColumnNames()
@Nullable String
getConstraintName()
@Nullable Predicate
getPredicate()
boolean
isDoNothing()
boolean
isDoUpdate()
-
-
-
Method Detail
-
getConstraintName
public @Nullable String getConstraintName()
-
getAssignments
public List<Assignment> getAssignments()
-
isDoNothing
public boolean isDoNothing()
-
isDoUpdate
public boolean isDoUpdate()
-
getPredicate
public @Nullable Predicate getPredicate()
-
-