Modifier and Type | Field and Description |
---|---|
protected SqlTable |
SqlColumn.table |
Modifier and Type | Method and Description |
---|---|
static SqlTable |
SqlTable.of(String name) |
Modifier and Type | Method and Description |
---|---|
static DeleteDSL<DeleteModel> |
SqlBuilder.deleteFrom(SqlTable table) |
static InsertSelectDSL.InsertColumnGatherer |
SqlBuilder.insertInto(SqlTable table) |
static UpdateDSL<UpdateModel> |
SqlBuilder.update(SqlTable table) |
SqlColumn.Builder |
SqlColumn.Builder.withTable(SqlTable table) |
Modifier and Type | Method and Description |
---|---|
SqlTable |
DeleteModel.table() |
Modifier and Type | Method and Description |
---|---|
static <R> DeleteDSL<R> |
DeleteDSL.deleteFrom(Function<DeleteModel,R> adapterFunction,
SqlTable table) |
static DeleteDSL<DeleteModel> |
DeleteDSL.deleteFrom(SqlTable table) |
static <T> DeleteDSL<MyBatis3DeleteModelAdapter<T>> |
DeleteDSL.deleteFromWithMapper(Function<DeleteStatementProvider,T> mapperMethod,
SqlTable table) |
static DeleteModel.Builder |
DeleteModel.withTable(SqlTable table) |
DeleteModel.Builder |
DeleteModel.Builder.withTable(SqlTable table) |
Modifier and Type | Method and Description |
---|---|
SqlTable |
InsertSelectModel.table() |
SqlTable |
InsertModel.table() |
SqlTable |
BatchInsertModel.table() |
Modifier and Type | Method and Description |
---|---|
static InsertSelectDSL.InsertColumnGatherer |
InsertSelectDSL.insertInto(SqlTable table) |
InsertDSL<T> |
InsertDSL.IntoGatherer.into(SqlTable table) |
BatchInsertDSL<T> |
BatchInsertDSL.IntoGatherer.into(SqlTable table) |
static InsertSelectModel.Builder |
InsertSelectModel.withTable(SqlTable table) |
InsertSelectModel.Builder |
InsertSelectModel.Builder.withTable(SqlTable table) |
InsertModel.Builder<T> |
InsertModel.Builder.withTable(SqlTable table) |
BatchInsertModel.Builder<T> |
BatchInsertModel.Builder.withTable(SqlTable table) |
Modifier and Type | Method and Description |
---|---|
Optional<String> |
TableAliasCalculator.aliasForColumn(SqlTable table) |
Optional<String> |
GuaranteedTableAliasCalculator.aliasForColumn(SqlTable table) |
Optional<String> |
TableAliasCalculator.aliasForTable(SqlTable table) |
static TableAliasCalculator |
TableAliasCalculator.of(SqlTable table,
String alias) |
Modifier and Type | Method and Description |
---|---|
static TableAliasCalculator |
TableAliasCalculator.of(Map<SqlTable,String> aliases) |
static TableAliasCalculator |
GuaranteedTableAliasCalculator.of(Map<SqlTable,String> aliases) |
Constructor and Description |
---|
TableAliasCalculator(Map<SqlTable,String> aliases) |
Modifier and Type | Method and Description |
---|---|
SqlTable |
QueryExpressionModel.table() |
Modifier and Type | Method and Description |
---|---|
QueryExpressionModel.Builder |
QueryExpressionModel.Builder.withTableAliases(Map<SqlTable,String> tableAliases) |
Constructor and Description |
---|
JoinSpecificationFinisher(SqlTable table,
BasicColumn joinColumn,
JoinCondition joinCondition,
JoinType joinType) |
JoinSpecificationFinisher(SqlTable table,
BasicColumn joinColumn,
JoinCondition joinCondition,
JoinType joinType,
JoinCriterion... joinCriteria) |
JoinSpecificationStarter(SqlTable joinTable,
JoinType joinType) |
Modifier and Type | Method and Description |
---|---|
SqlTable |
JoinSpecification.table() |
Modifier and Type | Method and Description |
---|---|
static JoinSpecification.Builder |
JoinSpecification.withJoinTable(SqlTable table) |
JoinSpecification.Builder |
JoinSpecification.Builder.withJoinTable(SqlTable table) |
Modifier and Type | Method and Description |
---|---|
SqlTable |
UpdateModel.table() |
Modifier and Type | Method and Description |
---|---|
static <R> UpdateDSL<R> |
UpdateDSL.update(Function<UpdateModel,R> adapterFunction,
SqlTable table) |
static UpdateDSL<UpdateModel> |
UpdateDSL.update(SqlTable table) |
static <T> UpdateDSL<MyBatis3UpdateModelAdapter<T>> |
UpdateDSL.updateWithMapper(Function<UpdateStatementProvider,T> mapperMethod,
SqlTable table) |
static UpdateModel.Builder |
UpdateModel.withTable(SqlTable table) |
UpdateModel.Builder |
UpdateModel.Builder.withTable(SqlTable table) |
Copyright © 2016–2017 MyBatis.org. All rights reserved.