Package org.mybatis.dynamic.sql.insert
Class InsertModel<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.insert.InsertModel<T>
-
public class InsertModel<T> extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InsertModel.Builder<T>
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Stream<R>
mapColumnMappings(Function<AbstractColumnMapping,R> mapper)
InsertStatementProvider<T>
render(RenderingStrategy renderingStrategy)
T
row()
SqlTable
table()
static <T> InsertModel.Builder<T>
withRow(T row)
-
-
-
Method Detail
-
mapColumnMappings
public <R> Stream<R> mapColumnMappings(Function<AbstractColumnMapping,R> mapper)
-
row
public T row()
-
table
public SqlTable table()
-
render
@NotNull public InsertStatementProvider<T> render(RenderingStrategy renderingStrategy)
-
withRow
public static <T> InsertModel.Builder<T> withRow(T row)
-
-