Modifier and Type | Class and Description |
---|---|
class |
SelectDSL.FetchFirstFinisher |
class |
SelectDSL.LimitFinisher |
class |
SelectDSL.OffsetFinisher |
class |
SelectDSL.OffsetFirstFinisher |
class |
SelectDSL.RowsOnlyFinisher |
public static QueryExpressionDSL.FromGatherer<SelectModel> select(BasicColumn... selectList)
public static QueryExpressionDSL.FromGatherer<SelectModel> select(Collection<BasicColumn> selectList)
public static <R> QueryExpressionDSL.FromGatherer<R> select(Function<SelectModel,R> adapterFunction, BasicColumn... selectList)
public static <R> QueryExpressionDSL.FromGatherer<R> select(Function<SelectModel,R> adapterFunction, Collection<BasicColumn> selectList)
public static QueryExpressionDSL.FromGatherer<SelectModel> selectDistinct(BasicColumn... selectList)
public static QueryExpressionDSL.FromGatherer<SelectModel> selectDistinct(Collection<BasicColumn> selectList)
public static <R> QueryExpressionDSL.FromGatherer<R> selectDistinct(Function<SelectModel,R> adapterFunction, BasicColumn... selectList)
public static <R> QueryExpressionDSL.FromGatherer<R> selectDistinct(Function<SelectModel,R> adapterFunction, Collection<BasicColumn> selectList)
@Deprecated public static <T> QueryExpressionDSL.FromGatherer<MyBatis3SelectModelAdapter<T>> selectWithMapper(Function<SelectStatementProvider,T> mapperMethod, BasicColumn... selectList)
MyBatis3Utils
.
This method will be removed without direct replacement in a future versionT
- the return type from a MyBatis mapper - typically a List or a single recordmapperMethod
- MyBatis3 mapper method that performs the selectselectList
- the column list to select@Deprecated public static <T> QueryExpressionDSL.FromGatherer<MyBatis3SelectModelAdapter<T>> selectDistinctWithMapper(Function<SelectStatementProvider,T> mapperMethod, BasicColumn... selectList)
MyBatis3Utils
.
This method will be removed without direct replacement in a future versionT
- the return type from a MyBatis mapper - typically a List or a single recordmapperMethod
- MyBatis3 mapper method that performs the selectselectList
- the column list to selectpublic SelectDSL.LimitFinisher limit(long limit)
public SelectDSL.OffsetFirstFinisher offset(long offset)
public SelectDSL.FetchFirstFinisher fetchFirst(long fetchFirstRows)
Copyright © 2016–2019 MyBatis.org. All rights reserved.