- java.lang.Object
-
- org.mybatis.dynamic.sql.insert.InsertModel.Builder<T>
-
- Enclosing class:
- InsertModel<T>
public static class InsertModel.Builder<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InsertModel<T>build()InsertModel.Builder<T>withColumnMappings(List<AbstractColumnMapping> columnMappings)InsertModel.Builder<T>withRow(T row)InsertModel.Builder<T>withTable(SqlTable table)
-
-
-
Method Detail
-
withTable
public InsertModel.Builder<T> withTable(SqlTable table)
-
withRow
public InsertModel.Builder<T> withRow(T row)
-
withColumnMappings
public InsertModel.Builder<T> withColumnMappings(List<AbstractColumnMapping> columnMappings)
-
build
public InsertModel<T> build()
-
-