Package org.mybatis.dynamic.sql.insert
Class GeneralInsertDSL.SetClauseFinisher<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.insert.GeneralInsertDSL.SetClauseFinisher<T>
-
- Enclosing class:
- GeneralInsertDSL
public class GeneralInsertDSL.SetClauseFinisher<T> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description SetClauseFinisher(SqlColumn<T> column)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GeneralInsertDSL
toConstant(java.lang.String constant)
GeneralInsertDSL
toNull()
GeneralInsertDSL
toStringConstant(java.lang.String constant)
GeneralInsertDSL
toValue(java.util.function.Supplier<T> valueSupplier)
GeneralInsertDSL
toValue(T value)
GeneralInsertDSL
toValueWhenPresent(java.util.function.Supplier<T> valueSupplier)
GeneralInsertDSL
toValueWhenPresent(T value)
-
-
-
Method Detail
-
toNull
public GeneralInsertDSL toNull()
-
toConstant
public GeneralInsertDSL toConstant(java.lang.String constant)
-
toStringConstant
public GeneralInsertDSL toStringConstant(java.lang.String constant)
-
toValue
public GeneralInsertDSL toValue(T value)
-
toValue
public GeneralInsertDSL toValue(java.util.function.Supplier<T> valueSupplier)
-
toValueWhenPresent
public GeneralInsertDSL toValueWhenPresent(T value)
-
toValueWhenPresent
public GeneralInsertDSL toValueWhenPresent(java.util.function.Supplier<T> valueSupplier)
-
-