Package org.mybatis.dynamic.sql.insert
Class InsertModel.Builder<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.insert.InsertModel.Builder<T>
-
- Enclosing class:
- InsertModel<T>
public static class InsertModel.Builder<T> extends java.lang.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(java.util.List<AbstractColumnMapping> columnMappings)
InsertModel.Builder<T>
withRecord(T record)
InsertModel.Builder<T>
withTable(SqlTable table)
-
-
-
Method Detail
-
withTable
public InsertModel.Builder<T> withTable(SqlTable table)
-
withRecord
public InsertModel.Builder<T> withRecord(T record)
-
withColumnMappings
public InsertModel.Builder<T> withColumnMappings(java.util.List<AbstractColumnMapping> columnMappings)
-
build
public InsertModel<T> build()
-
-