Package org.mybatis.dynamic.sql.insert
Class InsertDSL.Builder<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.insert.InsertDSL.Builder<T>
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InsertDSL<T>
build()
InsertDSL.Builder<T>
withColumnMappings(Collection<AbstractColumnMapping> columnMappings)
InsertDSL.Builder<T>
withRow(T row)
InsertDSL.Builder<T>
withTable(SqlTable table)
-
-
-
Method Detail
-
withRow
public InsertDSL.Builder<T> withRow(T row)
-
withTable
public InsertDSL.Builder<T> withTable(SqlTable table)
-
withColumnMappings
public InsertDSL.Builder<T> withColumnMappings(Collection<AbstractColumnMapping> columnMappings)
-
-