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 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(String constant)
GeneralInsertDSL
toNull()
GeneralInsertDSL
toStringConstant(String constant)
GeneralInsertDSL
toValue(Supplier<T> valueSupplier)
GeneralInsertDSL
toValue(T value)
GeneralInsertDSL
toValueOrNull(Supplier<T> valueSupplier)
GeneralInsertDSL
toValueOrNull(T value)
GeneralInsertDSL
toValueWhenPresent(Supplier<T> valueSupplier)
GeneralInsertDSL
toValueWhenPresent(T value)
-
-
-
Method Detail
-
toNull
public GeneralInsertDSL toNull()
-
toConstant
public GeneralInsertDSL toConstant(String constant)
-
toStringConstant
public GeneralInsertDSL toStringConstant(String constant)
-
toValue
public GeneralInsertDSL toValue(T value)
-
toValue
public GeneralInsertDSL toValue(Supplier<T> valueSupplier)
-
toValueOrNull
public GeneralInsertDSL toValueOrNull(T value)
-
toValueOrNull
public GeneralInsertDSL toValueOrNull(Supplier<T> valueSupplier)
-
toValueWhenPresent
public GeneralInsertDSL toValueWhenPresent(T value)
-
toValueWhenPresent
public GeneralInsertDSL toValueWhenPresent(Supplier<T> valueSupplier)
-
-