Package | Description |
---|---|
org.mybatis.dynamic.sql | |
org.mybatis.dynamic.sql.insert | |
org.mybatis.dynamic.sql.update | |
org.mybatis.dynamic.sql.util |
Modifier and Type | Method and Description |
---|---|
SqlColumn<T> |
SqlColumn.as(String alias) |
<T> SqlColumn<T> |
SqlColumn.Builder.build() |
<T> SqlColumn<T> |
SqlTable.column(String name,
JDBCType jdbcType) |
<T> SqlColumn<T> |
SqlTable.column(String name,
JDBCType jdbcType,
String typeHandler) |
Constructor and Description |
---|
SqlColumn(SqlColumn<?> sqlColumn) |
Modifier and Type | Method and Description |
---|---|
<F> InsertDSL.ColumnMappingFinisher<F> |
InsertDSL.map(SqlColumn<F> column) |
<F> BatchInsertDSL.BatchColumnMappingFinisher<F> |
BatchInsertDSL.map(SqlColumn<F> column) |
InsertSelectDSL.SelectGatherer |
InsertSelectDSL.InsertColumnGatherer.withColumnList(SqlColumn<?>... columns) |
Modifier and Type | Method and Description |
---|---|
<R> Stream<R> |
InsertColumnListModel.mapColumns(Function<SqlColumn<?>,R> mapper) |
static InsertColumnListModel |
InsertColumnListModel.of(List<SqlColumn<?>> columns) |
Constructor and Description |
---|
BatchColumnMappingFinisher(SqlColumn<F> column) |
ColumnMappingFinisher(SqlColumn<F> column) |
Modifier and Type | Method and Description |
---|---|
<T> UpdateDSL.SetClauseFinisher<T> |
UpdateDSL.set(SqlColumn<T> column) |
Constructor and Description |
---|
SetClauseFinisher(SqlColumn<T> column) |
Modifier and Type | Field and Description |
---|---|
protected SqlColumn<?> |
AbstractColumnMapping.column |
Modifier and Type | Method and Description |
---|---|
static NullMapping |
NullMapping.of(SqlColumn<?> column) |
static StringConstantMapping |
StringConstantMapping.of(SqlColumn<?> column,
String constant) |
static PropertyMapping |
PropertyMapping.of(SqlColumn<?> column,
String property) |
static ConstantMapping |
ConstantMapping.of(SqlColumn<?> column,
String constant) |
static <T> ValueMapping<T> |
ValueMapping.of(SqlColumn<T> column,
Supplier<T> valueSupplier) |
Modifier and Type | Method and Description |
---|---|
<R> R |
UpdateMapping.mapColumn(Function<SqlColumn<?>,R> mapper) |
<R> R |
InsertMapping.mapColumn(Function<SqlColumn<?>,R> mapper) |
<R> R |
AbstractColumnMapping.mapColumn(Function<SqlColumn<?>,R> mapper) |
Constructor and Description |
---|
AbstractColumnMapping(SqlColumn<?> column) |
Copyright © 2016–2017 MyBatis.org. All rights reserved.