@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnDuplicateStep.onConflictOnConstraint(Constraint constraint) | 
 Add a ON CONFLICT ON CONSTRAINT clause to this INSERT statement. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnDuplicateStep.onConflictOnConstraint(Name constraint) | 
 Add a ON CONFLICT ON CONSTRAINT clause to this INSERT statement. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnDuplicateStep.onConflictOnConstraint(UniqueKey<R> constraint) | 
 Add a ON CONFLICT ON CONSTRAINT clause to this INSERT statement. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(String sql) | 
 Add a WHERE clause to supply an index predicate to the
 INSERT statement's ON CONFLICT ... clause. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(String sql,
     Object... bindings) | 
 Add a WHERE clause to supply an index predicate to the
 INSERT statement's ON CONFLICT ... clause. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(String sql,
     QueryPart... parts) | 
 Add a WHERE clause to supply an index predicate to the
 INSERT statement's ON CONFLICT ... clause. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(Collection<? extends Condition> conditions) | 
Add a  WHERE clause to supply an index predicate to the
  INSERT statement's  ON CONFLICT ... clause,
 connecting them with each other using  Operator.AND.  
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(Condition condition) | 
 Add a WHERE clause to supply an index predicate to the
 INSERT statement's ON CONFLICT ... clause. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(Condition... conditions) | 
Add a  WHERE clause to supply an index predicate to the
  INSERT statement's  ON CONFLICT ... clause,
 connecting them with each other using  Operator.AND.  
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(Field<Boolean> field) | 
 Add a WHERE clause to supply an index predicate to the
 INSERT statement's ON CONFLICT ... clause. 
 | 
@NotNull InsertOnConflictDoUpdateStep<R> | 
InsertOnConflictWhereIndexPredicateStep.where(SQL sql) | 
 Add a WHERE clause to supply an index predicate to the
 INSERT statement's ON CONFLICT ... clause. 
 |