Interface InsertBuilder.InsertValues
- All Known Subinterfaces:
InsertBuilder.InsertIntoColumnsAndValues,InsertBuilder.InsertIntoColumnsAndValuesWithBuild,InsertBuilder.InsertValuesWithBuild
- Enclosing interface:
- InsertBuilder
public static interface InsertBuilder.InsertValues
Interface exposing
value methods to add values to the INSERT statement.-
Method Summary
Modifier and TypeMethodDescriptionvalue(Expression value) Add avalueto theVALUESlist.values(Collection<? extends Expression> values) Add one or morevaluesto theVALUESlist.values(Expression... values) Add one or morevaluesto theVALUESlist.
-
Method Details
-
value
- Parameters:
value- the value to use.- Returns:
thisbuilder.- See Also:
-
values
Add one or morevaluesto theVALUESlist. Calling this method multiple times will add avaluesmultiple times.- Parameters:
values- the values.- Returns:
thisbuilder.- See Also:
-
values
Add one or morevaluesto theVALUESlist. Calling this method multiple times will add avaluesmultiple times.- Parameters:
values- the values.- Returns:
thisbuilder.- See Also:
-