Uses of Class
org.mybatis.dynamic.sql.SqlTable
-
-
Uses of SqlTable in org.mybatis.dynamic.sql
Fields in org.mybatis.dynamic.sql declared as SqlTable Modifier and Type Field Description protected SqlTable
SqlColumn. table
Methods in org.mybatis.dynamic.sql that return SqlTable Modifier and Type Method Description static SqlTable
SqlTable. of(java.lang.String name)
SqlTable
SqlColumn. table()
Methods in org.mybatis.dynamic.sql with parameters of type SqlTable Modifier and Type Method Description static CountDSL<SelectModel>
SqlBuilder. countFrom(SqlTable table)
Renders as select count(*) from table...static DeleteDSL<DeleteModel>
SqlBuilder. deleteFrom(SqlTable table)
static SqlBuilder.InsertIntoNextStep
SqlBuilder. insertInto(SqlTable table)
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)
static UpdateDSL<UpdateModel>
SqlBuilder. update(SqlTable table)
SqlColumn.Builder
SqlColumn.Builder. withTable(SqlTable table)
-
Uses of SqlTable in org.mybatis.dynamic.sql.delete
Methods in org.mybatis.dynamic.sql.delete that return SqlTable Modifier and Type Method Description SqlTable
DeleteModel. table()
Methods in org.mybatis.dynamic.sql.delete with parameters of type SqlTable Modifier and Type Method Description static <R> DeleteDSL<R>
DeleteDSL. deleteFrom(java.util.function.Function<DeleteModel,R> adapterFunction, SqlTable table)
static DeleteDSL<DeleteModel>
DeleteDSL. deleteFrom(SqlTable table)
static <T> DeleteDSL<MyBatis3DeleteModelAdapter<T>>
DeleteDSL. deleteFromWithMapper(java.util.function.Function<DeleteStatementProvider,T> mapperMethod, SqlTable table)
Deprecated.DeleteModel.Builder
DeleteModel.Builder. withTable(SqlTable table)
static DeleteModel.Builder
DeleteModel. withTable(SqlTable table)
-
Uses of SqlTable in org.mybatis.dynamic.sql.insert
Methods in org.mybatis.dynamic.sql.insert that return SqlTable Modifier and Type Method Description SqlTable
AbstractMultiRowInsertModel. table()
SqlTable
GeneralInsertModel. table()
SqlTable
InsertModel. table()
SqlTable
InsertSelectModel. table()
Methods in org.mybatis.dynamic.sql.insert with parameters of type SqlTable Modifier and Type Method Description static GeneralInsertDSL
GeneralInsertDSL. insertInto(SqlTable table)
static InsertSelectDSL.InsertColumnGatherer
InsertSelectDSL. insertInto(SqlTable table)
BatchInsertDSL<T>
BatchInsertDSL.IntoGatherer. into(SqlTable table)
InsertDSL<T>
InsertDSL.IntoGatherer. into(SqlTable table)
MultiRowInsertDSL<T>
MultiRowInsertDSL.IntoGatherer. into(SqlTable table)
S
AbstractMultiRowInsertModel.AbstractBuilder. withTable(SqlTable table)
GeneralInsertModel.Builder
GeneralInsertModel.Builder. withTable(SqlTable table)
InsertModel.Builder<T>
InsertModel.Builder. withTable(SqlTable table)
InsertSelectModel.Builder
InsertSelectModel.Builder. withTable(SqlTable table)
static InsertSelectModel.Builder
InsertSelectModel. withTable(SqlTable table)
-
Uses of SqlTable in org.mybatis.dynamic.sql.render
Methods in org.mybatis.dynamic.sql.render with parameters of type SqlTable Modifier and Type Method Description java.util.Optional<java.lang.String>
GuaranteedTableAliasCalculator. aliasForColumn(SqlTable table)
java.util.Optional<java.lang.String>
TableAliasCalculator. aliasForColumn(SqlTable table)
java.util.Optional<java.lang.String>
TableAliasCalculator. aliasForTable(SqlTable table)
static TableAliasCalculator
TableAliasCalculator. of(SqlTable table, java.lang.String alias)
Method parameters in org.mybatis.dynamic.sql.render with type arguments of type SqlTable Modifier and Type Method Description static TableAliasCalculator
GuaranteedTableAliasCalculator. of(java.util.Map<SqlTable,java.lang.String> aliases)
static TableAliasCalculator
TableAliasCalculator. of(java.util.Map<SqlTable,java.lang.String> aliases)
Constructor parameters in org.mybatis.dynamic.sql.render with type arguments of type SqlTable Constructor Description TableAliasCalculator(java.util.Map<SqlTable,java.lang.String> aliases)
-
Uses of SqlTable in org.mybatis.dynamic.sql.select
Fields in org.mybatis.dynamic.sql.select with type parameters of type SqlTable Modifier and Type Field Description protected java.util.Map<SqlTable,java.lang.String>
AbstractQueryExpressionDSL. tableAliases
Methods in org.mybatis.dynamic.sql.select that return SqlTable Modifier and Type Method Description SqlTable
AbstractQueryExpressionDSL. table()
SqlTable
QueryExpressionModel. table()
Methods in org.mybatis.dynamic.sql.select with parameters of type SqlTable Modifier and Type Method Description java.lang.String
QueryExpressionModel. calculateTableNameIncludingAlias(SqlTable table)
static <R> CountDSL<R>
CountDSL. countFrom(java.util.function.Function<SelectModel,R> adapterFunction, SqlTable table)
static CountDSL<SelectModel>
CountDSL. countFrom(SqlTable table)
CountDSL<R>
CountDSL.FromGatherer. from(SqlTable table)
QueryExpressionDSL<R>
QueryExpressionDSL.FromGatherer. from(SqlTable table)
QueryExpressionDSL<R>
QueryExpressionDSL.FromGatherer. from(SqlTable table, java.lang.String tableAlias)
T
AbstractQueryExpressionDSL. fullJoin(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. fullJoin(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
T
AbstractQueryExpressionDSL. fullJoin(SqlTable joinTable, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. fullJoin(SqlTable joinTable, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. fullJoin(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. fullJoin(SqlTable joinTable, java.lang.String tableAlias)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. fullJoin(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. fullJoin(SqlTable joinTable, java.lang.String tableAlias)
T
AbstractQueryExpressionDSL. join(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. join(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
T
AbstractQueryExpressionDSL. join(SqlTable joinTable, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. join(SqlTable joinTable, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. join(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. join(SqlTable joinTable, java.lang.String tableAlias)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. join(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. join(SqlTable joinTable, java.lang.String tableAlias)
T
AbstractQueryExpressionDSL. leftJoin(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. leftJoin(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
T
AbstractQueryExpressionDSL. leftJoin(SqlTable joinTable, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. leftJoin(SqlTable joinTable, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. leftJoin(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. leftJoin(SqlTable joinTable, java.lang.String tableAlias)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. leftJoin(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. leftJoin(SqlTable joinTable, java.lang.String tableAlias)
T
AbstractQueryExpressionDSL. rightJoin(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. rightJoin(SqlTable joinTable, java.lang.String tableAlias, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
T
AbstractQueryExpressionDSL. rightJoin(SqlTable joinTable, JoinCriterion onJoinCriterion, java.util.List<JoinCriterion> andJoinCriteria)
T
AbstractQueryExpressionDSL. rightJoin(SqlTable joinTable, JoinCriterion onJoinCriterion, JoinCriterion... andJoinCriteria)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. rightJoin(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL.JoinSpecificationFinisher. rightJoin(SqlTable joinTable, java.lang.String tableAlias)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. rightJoin(SqlTable joinTable)
QueryExpressionDSL.JoinSpecificationStarter
QueryExpressionDSL. rightJoin(SqlTable joinTable, java.lang.String tableAlias)
QueryExpressionModel.Builder
QueryExpressionModel.Builder. withTable(SqlTable table)
Method parameters in org.mybatis.dynamic.sql.select with type arguments of type SqlTable Modifier and Type Method Description QueryExpressionModel.Builder
QueryExpressionModel.Builder. withTableAliases(java.util.Map<SqlTable,java.lang.String> tableAliases)
Constructors in org.mybatis.dynamic.sql.select with parameters of type SqlTable Constructor Description AbstractQueryExpressionDSL(SqlTable table)
JoinSpecificationFinisher(SqlTable table, BasicColumn joinColumn, JoinCondition joinCondition, JoinType joinType)
JoinSpecificationFinisher(SqlTable table, BasicColumn joinColumn, JoinCondition joinCondition, JoinType joinType, JoinCriterion... andJoinCriteria)
JoinSpecificationStarter(SqlTable joinTable, JoinType joinType)
-
Uses of SqlTable in org.mybatis.dynamic.sql.select.join
Methods in org.mybatis.dynamic.sql.select.join that return SqlTable Modifier and Type Method Description SqlTable
JoinSpecification. table()
Methods in org.mybatis.dynamic.sql.select.join with parameters of type SqlTable Modifier and Type Method Description JoinSpecification.Builder
JoinSpecification.Builder. withJoinTable(SqlTable table)
static JoinSpecification.Builder
JoinSpecification. withJoinTable(SqlTable table)
-
Uses of SqlTable in org.mybatis.dynamic.sql.update
Methods in org.mybatis.dynamic.sql.update that return SqlTable Modifier and Type Method Description SqlTable
UpdateModel. table()
Methods in org.mybatis.dynamic.sql.update with parameters of type SqlTable Modifier and Type Method Description static <R> UpdateDSL<R>
UpdateDSL. update(java.util.function.Function<UpdateModel,R> adapterFunction, SqlTable table)
static UpdateDSL<UpdateModel>
UpdateDSL. update(SqlTable table)
static <T> UpdateDSL<MyBatis3UpdateModelAdapter<T>>
UpdateDSL. updateWithMapper(java.util.function.Function<UpdateStatementProvider,T> mapperMethod, SqlTable table)
Deprecated.UpdateModel.Builder
UpdateModel.Builder. withTable(SqlTable table)
static UpdateModel.Builder
UpdateModel. withTable(SqlTable table)
-
Uses of SqlTable in org.mybatis.dynamic.sql.util.mybatis3
Methods in org.mybatis.dynamic.sql.util.mybatis3 with parameters of type SqlTable Modifier and Type Method Description static long
MyBatis3Utils. count(java.util.function.ToLongFunction<SelectStatementProvider> mapper, BasicColumn column, SqlTable table, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. count(BasicColumn column, SqlTable table, CountDSLCompleter completer)
static long
MyBatis3Utils. countDistinct(java.util.function.ToLongFunction<SelectStatementProvider> mapper, BasicColumn column, SqlTable table, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. countDistinct(BasicColumn column, SqlTable table, CountDSLCompleter completer)
static long
MyBatis3Utils. countFrom(java.util.function.ToLongFunction<SelectStatementProvider> mapper, SqlTable table, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. countFrom(SqlTable table, CountDSLCompleter completer)
static int
MyBatis3Utils. deleteFrom(java.util.function.ToIntFunction<DeleteStatementProvider> mapper, SqlTable table, DeleteDSLCompleter completer)
static DeleteStatementProvider
MyBatis3Utils. deleteFrom(SqlTable table, DeleteDSLCompleter completer)
static int
MyBatis3Utils. generalInsert(java.util.function.ToIntFunction<GeneralInsertStatementProvider> mapper, SqlTable table, java.util.function.UnaryOperator<GeneralInsertDSL> completer)
static GeneralInsertStatementProvider
MyBatis3Utils. generalInsert(SqlTable table, java.util.function.UnaryOperator<GeneralInsertDSL> completer)
static <R> int
MyBatis3Utils. insert(java.util.function.ToIntFunction<InsertStatementProvider<R>> mapper, R record, SqlTable table, java.util.function.UnaryOperator<InsertDSL<R>> completer)
static <R> InsertStatementProvider<R>
MyBatis3Utils. insert(R record, SqlTable table, java.util.function.UnaryOperator<InsertDSL<R>> completer)
static <R> MultiRowInsertStatementProvider<R>
MyBatis3Utils. insertMultiple(java.util.Collection<R> records, SqlTable table, java.util.function.UnaryOperator<MultiRowInsertDSL<R>> completer)
static <R> int
MyBatis3Utils. insertMultiple(java.util.function.ToIntFunction<MultiRowInsertStatementProvider<R>> mapper, java.util.Collection<R> records, SqlTable table, java.util.function.UnaryOperator<MultiRowInsertDSL<R>> completer)
static SelectStatementProvider
MyBatis3Utils. select(BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)
static <R> java.util.List<R>
MyBatis3Utils. selectDistinct(java.util.function.Function<SelectStatementProvider,java.util.List<R>> mapper, BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. selectDistinct(BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)
static <R> java.util.List<R>
MyBatis3Utils. selectList(java.util.function.Function<SelectStatementProvider,java.util.List<R>> mapper, BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)
static <R> R
MyBatis3Utils. selectOne(java.util.function.Function<SelectStatementProvider,R> mapper, BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)
static int
MyBatis3Utils. update(java.util.function.ToIntFunction<UpdateStatementProvider> mapper, SqlTable table, UpdateDSLCompleter completer)
static UpdateStatementProvider
MyBatis3Utils. update(SqlTable table, UpdateDSLCompleter completer)
-