Module org.mybatis.dynamic.sql
Package org.mybatis.dynamic.sql.select
Class QueryExpressionDSL.GroupByFinisher
- java.lang.Object
-
- org.mybatis.dynamic.sql.select.QueryExpressionDSL.GroupByFinisher
-
- All Implemented Interfaces:
Buildable<R>
- Enclosing class:
- QueryExpressionDSL<R>
public class QueryExpressionDSL.GroupByFinisher extends Object implements Buildable<R>
-
-
Constructor Summary
Constructors Constructor Description GroupByFinisher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Rbuild()SelectDSL.FetchFirstFinisherfetchFirst(long fetchFirstRows)SelectDSL.LimitFinisherlimit(long limit)SelectDSL.OffsetFirstFinisheroffset(long offset)SelectDSL<R>orderBy(Collection<SortSpecification> columns)SelectDSL<R>orderBy(SortSpecification... columns)QueryExpressionDSL.UnionBuilderunion()QueryExpressionDSL.UnionBuilderunionAll()
-
-
-
Method Detail
-
orderBy
public SelectDSL<R> orderBy(SortSpecification... columns)
-
orderBy
public SelectDSL<R> orderBy(Collection<SortSpecification> columns)
-
union
public QueryExpressionDSL.UnionBuilder union()
-
unionAll
public QueryExpressionDSL.UnionBuilder unionAll()
-
limit
public SelectDSL.LimitFinisher limit(long limit)
-
offset
public SelectDSL.OffsetFirstFinisher offset(long offset)
-
fetchFirst
public SelectDSL.FetchFirstFinisher fetchFirst(long fetchFirstRows)
-
-