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)SqlColumn<T>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.ColumnMappingFinisher<F>BatchInsertDSL. map(SqlColumn<F> column)<F> InsertDSL.ColumnMappingFinisher<F>InsertDSL. map(SqlColumn<F> column)<F> MultiRowInsertDSL.ColumnMappingFinisher<F>MultiRowInsertDSL. map(SqlColumn<F> column)InsertSelectDSL.SelectGathererInsertSelectDSL.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 InsertColumnListModelInsertColumnListModel. of(java.util.List<SqlColumn<?>> columns)Constructors in org.mybatis.dynamic.sql.insert with parameters of type SqlColumn Constructor Description ColumnMappingFinisher(SqlColumn<F> column)ColumnMappingFinisher(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. columnMethods in org.mybatis.dynamic.sql.util with parameters of type SqlColumn Modifier and Type Method Description static ColumnMappingColumnMapping. of(SqlColumn<?> column, BasicColumn rightColumn)static ConstantMappingConstantMapping. of(SqlColumn<?> column, java.lang.String constant)static NullMappingNullMapping. of(SqlColumn<?> column)static PropertyMappingPropertyMapping. of(SqlColumn<?> column, java.lang.String property)static SelectMappingSelectMapping. of(SqlColumn<?> column, Buildable<SelectModel> selectModelBuilder)static StringConstantMappingStringConstantMapping. 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> RAbstractColumnMapping. mapColumn(java.util.function.Function<SqlColumn<?>,R> mapper)<R> RInsertMapping. mapColumn(java.util.function.Function<SqlColumn<?>,R> mapper)<R> RUpdateMapping. 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)
-