- java.lang.Object
-
- org.mybatis.dynamic.sql.insert.MultiRowInsertDSL<T>
-
- All Implemented Interfaces:
Buildable<MultiRowInsertModel<T>>
public class MultiRowInsertDSL<T> extends Object implements Buildable<MultiRowInsertModel<T>>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classMultiRowInsertDSL.ColumnMappingFinisher<F>static classMultiRowInsertDSL.IntoGatherer<T>
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MultiRowInsertModel<T>build()static <T> MultiRowInsertDSL.IntoGatherer<T>insert(Collection<T> records)static <T> MultiRowInsertDSL.IntoGatherer<T>insert(T... records)<F> MultiRowInsertDSL.ColumnMappingFinisher<F>map(SqlColumn<F> column)
-
-
-
Method Detail
-
map
public <F> MultiRowInsertDSL.ColumnMappingFinisher<F> map(SqlColumn<F> column)
-
build
@NotNull public MultiRowInsertModel<T> build()
-
insert
@SafeVarargs public static <T> MultiRowInsertDSL.IntoGatherer<T> insert(T... records)
-
insert
public static <T> MultiRowInsertDSL.IntoGatherer<T> insert(Collection<T> records)
-
-