Uses of Class
com.gengoai.sql.constraint.ConflictClause
-
Packages that use ConflictClause Package Description com.gengoai.sql com.gengoai.sql.constraint com.gengoai.sql.object -
-
Uses of ConflictClause in com.gengoai.sql
Methods in com.gengoai.sql with parameters of type ConflictClause Modifier and Type Method Description protected String
SQLDialect. conflictClause(ConflictClause conflictClause)
Generates the SQL for defining what happens on conflict -
Uses of ConflictClause in com.gengoai.sql.constraint
Methods in com.gengoai.sql.constraint that return ConflictClause Modifier and Type Method Description static ConflictClause
ConflictClause. valueOf(String name)
Returns the enum constant of this type with the specified name.static ConflictClause[]
ConflictClause. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.gengoai.sql.constraint with parameters of type ConflictClause Modifier and Type Method Description T
ConstraintWithConflictClause. onConflict(ConflictClause conflictClause)
-
Uses of ConflictClause in com.gengoai.sql.object
Methods in com.gengoai.sql.object with parameters of type ConflictClause Modifier and Type Method Description Column
Column. notNull(ConflictClause conflictClause)
Sets the column to not allow null values optionally specifying what happens when insertion of a null value is attempted.Column
Column. unique(@NonNull String name, ConflictClause conflictClause)
Sets the column to have a uniqueness constraint optionally specifying what happens when insertion of a duplicate value is attempted.Column
Column. unique(ConflictClause conflictClause)
Sets the column to have a uniqueness constraint optionally specifying what happens when insertion of a duplicate value is attempted.
-