Module org.mybatis.dynamic.sql
Package org.mybatis.dynamic.sql.select
Class QueryExpressionDSL.FromGatherer<R>
- java.lang.Object
-
- org.mybatis.dynamic.sql.select.QueryExpressionDSL.FromGatherer<R>
-
- Enclosing class:
- QueryExpressionDSL<R>
public static class QueryExpressionDSL.FromGatherer<R> extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
QueryExpressionDSL.FromGatherer.Builder<R>
-
Constructor Summary
Constructors Constructor Description FromGatherer(QueryExpressionDSL.FromGatherer.Builder<R> builder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryExpressionDSL<R>
from(SqlTable table)
QueryExpressionDSL<R>
from(SqlTable table, String tableAlias)
QueryExpressionDSL<R>
from(Buildable<SelectModel> select)
QueryExpressionDSL<R>
from(Buildable<SelectModel> select, String tableAlias)
-
-
-
Constructor Detail
-
FromGatherer
public FromGatherer(QueryExpressionDSL.FromGatherer.Builder<R> builder)
-
-
Method Detail
-
from
public QueryExpressionDSL<R> from(Buildable<SelectModel> select)
-
from
public QueryExpressionDSL<R> from(Buildable<SelectModel> select, String tableAlias)
-
from
public QueryExpressionDSL<R> from(SqlTable table)
-
from
public QueryExpressionDSL<R> from(SqlTable table, String tableAlias)
-
-