Uses of Class
org.mybatis.dynamic.sql.insert.InsertDSL
-
Packages that use InsertDSL Package Description org.mybatis.dynamic.sql.insert org.mybatis.dynamic.sql.util.mybatis3 -
-
Uses of InsertDSL in org.mybatis.dynamic.sql.insert
Methods in org.mybatis.dynamic.sql.insert that return InsertDSL Modifier and Type Method Description InsertDSL<T>
InsertDSL.IntoGatherer. into(SqlTable table)
InsertDSL<T>
InsertDSL.ColumnMappingFinisher. toConstant(java.lang.String constant)
InsertDSL<T>
InsertDSL.ColumnMappingFinisher. toNull()
InsertDSL<T>
InsertDSL.ColumnMappingFinisher. toProperty(java.lang.String property)
InsertDSL<T>
InsertDSL.ColumnMappingFinisher. toPropertyWhenPresent(java.lang.String property, java.util.function.Supplier<?> valueSupplier)
InsertDSL<T>
InsertDSL.ColumnMappingFinisher. toStringConstant(java.lang.String constant)
-
Uses of InsertDSL in org.mybatis.dynamic.sql.util.mybatis3
Method parameters in org.mybatis.dynamic.sql.util.mybatis3 with type arguments of type InsertDSL Modifier and Type Method Description static <R> int
MyBatis3Utils. insert(java.util.function.ToIntFunction<InsertStatementProvider<R>> mapper, R record, SqlTable table, java.util.function.UnaryOperator<InsertDSL<R>> completer)
static <R> InsertStatementProvider<R>
MyBatis3Utils. insert(R record, SqlTable table, java.util.function.UnaryOperator<InsertDSL<R>> completer)
-