Uses of Class
org.mybatis.dynamic.sql.SqlColumn
-
Packages that use SqlColumn Package Description org.mybatis.dynamic.sql org.mybatis.dynamic.sql.insert org.mybatis.dynamic.sql.update org.mybatis.dynamic.sql.util -
-
Uses of SqlColumn in org.mybatis.dynamic.sql
Methods in org.mybatis.dynamic.sql that return SqlColumn Modifier and Type Method Description <T> SqlColumn<T>
SqlTable. allColumns()
SqlColumn<T>
SqlColumn. as(java.lang.String alias)
<T> SqlColumn<T>
SqlColumn.Builder. build()
<T> SqlColumn<T>
SqlTable. column(java.lang.String name)
<T> SqlColumn<T>
SqlTable. column(java.lang.String name, java.sql.JDBCType jdbcType)
<T> SqlColumn<T>
SqlTable. column(java.lang.String name, java.sql.JDBCType jdbcType, java.lang.String typeHandler)
static <T> SqlColumn<T>
SqlColumn. of(java.lang.String name, SqlTable table)
static <T> SqlColumn<T>
SqlColumn. of(java.lang.String name, SqlTable table, java.sql.JDBCType jdbcType)
<S> SqlColumn<S>
SqlColumn. withTypeHandler(java.lang.String typeHandler)
Constructors in org.mybatis.dynamic.sql with parameters of type SqlColumn Constructor Description SqlColumn(SqlColumn<?> sqlColumn)
-
Uses of SqlColumn in org.mybatis.dynamic.sql.insert
Methods in org.mybatis.dynamic.sql.insert with parameters of type SqlColumn Modifier and Type Method Description <F> BatchInsertDSL.BatchColumnMappingFinisher<F>
BatchInsertDSL. map(SqlColumn<F> column)
<F> InsertDSL.ColumnMappingFinisher<F>
InsertDSL. map(SqlColumn<F> column)
InsertSelectDSL.SelectGatherer
InsertSelectDSL.InsertColumnGatherer. withColumnList(SqlColumn<?>... columns)
Method parameters in org.mybatis.dynamic.sql.insert with type arguments of type SqlColumn Modifier and Type Method Description <R> java.util.stream.Stream<R>
InsertColumnListModel. mapColumns(java.util.function.Function<SqlColumn<?>,R> mapper)
static InsertColumnListModel
InsertColumnListModel. of(java.util.List<SqlColumn<?>> columns)
Constructors in org.mybatis.dynamic.sql.insert with parameters of type SqlColumn Constructor Description BatchColumnMappingFinisher(SqlColumn<F> column)
ColumnMappingFinisher(SqlColumn<F> column)
-
Uses of SqlColumn in org.mybatis.dynamic.sql.update
Methods in org.mybatis.dynamic.sql.update with parameters of type SqlColumn Modifier and Type Method Description <T> UpdateDSL.SetClauseFinisher<T>
UpdateDSL. set(SqlColumn<T> column)
Constructors in org.mybatis.dynamic.sql.update with parameters of type SqlColumn Constructor Description SetClauseFinisher(SqlColumn<T> column)
-
Uses of SqlColumn in org.mybatis.dynamic.sql.util
Fields in org.mybatis.dynamic.sql.util declared as SqlColumn Modifier and Type Field Description protected SqlColumn<?>
AbstractColumnMapping. column
Methods in org.mybatis.dynamic.sql.util with parameters of type SqlColumn Modifier and Type Method Description static ColumnMapping
ColumnMapping. of(SqlColumn<?> column, BasicColumn rightColumn)
static ConstantMapping
ConstantMapping. of(SqlColumn<?> column, java.lang.String constant)
static NullMapping
NullMapping. of(SqlColumn<?> column)
static PropertyMapping
PropertyMapping. of(SqlColumn<?> column, java.lang.String property)
static SelectMapping
SelectMapping. of(SqlColumn<?> column, Buildable<SelectModel> selectModelBuilder)
static StringConstantMapping
StringConstantMapping. of(SqlColumn<?> column, java.lang.String constant)
static <T> ValueMapping<T>
ValueMapping. of(SqlColumn<T> column, java.util.function.Supplier<T> valueSupplier)
Method parameters in org.mybatis.dynamic.sql.util with type arguments of type SqlColumn Modifier and Type Method Description <R> R
AbstractColumnMapping. mapColumn(java.util.function.Function<SqlColumn<?>,R> mapper)
<R> R
InsertMapping. mapColumn(java.util.function.Function<SqlColumn<?>,R> mapper)
<R> R
UpdateMapping. mapColumn(java.util.function.Function<SqlColumn<?>,R> mapper)
Constructors in org.mybatis.dynamic.sql.util with parameters of type SqlColumn Constructor Description AbstractColumnMapping(SqlColumn<?> column)
-