Interface UpsertBuilder.UpsertInsert
- Enclosing interface:
UpsertBuilder
public static interface UpsertBuilder.UpsertInsert
Step for specifying the columns and values to insert.
- Since:
- 4.1
- Author:
- Christoph Strobl
-
Method Summary
Modifier and TypeMethodDescriptioninsert(Collection<? extends Assignment> assignments) Specify the column-value assignments for the insert.default UpsertBuilder.UpsertOnMatchinsert(Assignment... assignments) Specify the column-value assignments for the insert.
-
Method Details
-
insert
Specify the column-value assignments for the insert.- Parameters:
assignments- one or morecolumn assignments; must not be null.- Returns:
- the next builder step.
-
insert
Specify the column-value assignments for the insert.- Parameters:
assignments- thecolumn assignments; must not be null.- Returns:
- the next builder step.
-