Uses of Interface
org.mybatis.dynamic.sql.select.render.SelectStatementProvider
-
-
Uses of SelectStatementProvider in org.mybatis.dynamic.sql.select
Methods in org.mybatis.dynamic.sql.select that return SelectStatementProvider Modifier and Type Method Description SelectStatementProvider
SelectModel. render(RenderingStrategy renderingStrategy)
-
Uses of SelectStatementProvider in org.mybatis.dynamic.sql.select.render
Classes in org.mybatis.dynamic.sql.select.render that implement SelectStatementProvider Modifier and Type Class Description class
DefaultSelectStatementProvider
Methods in org.mybatis.dynamic.sql.select.render that return SelectStatementProvider Modifier and Type Method Description SelectStatementProvider
SelectRenderer. render()
-
Uses of SelectStatementProvider in org.mybatis.dynamic.sql.util
Methods in org.mybatis.dynamic.sql.util with parameters of type SelectStatementProvider Modifier and Type Method Description String
SqlProviderAdapter. select(SelectStatementProvider selectStatement)
-
Uses of SelectStatementProvider in org.mybatis.dynamic.sql.util.mybatis3
Methods in org.mybatis.dynamic.sql.util.mybatis3 that return SelectStatementProvider Modifier and Type Method Description static SelectStatementProvider
MyBatis3Utils. count(BasicColumn column, SqlTable table, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. countDistinct(BasicColumn column, SqlTable table, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. countFrom(CountDSL<SelectModel> start, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. countFrom(SqlTable table, CountDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. select(BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. select(QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer)
static SelectStatementProvider
MyBatis3Utils. selectDistinct(BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)
Methods in org.mybatis.dynamic.sql.util.mybatis3 with parameters of type SelectStatementProvider Modifier and Type Method Description long
CommonCountMapper. count(SelectStatementProvider selectStatement)
Execute a select statement that returns a long (typically a select(count(*)) statement).default <R> List<R>
CommonSelectMapper. selectMany(SelectStatementProvider selectStatement, Function<Map<String,Object>,R> rowMapper)
Select any number of rows and then convert the values to a custom type.List<BigDecimal>
CommonSelectMapper. selectManyBigDecimals(SelectStatementProvider selectStatement)
Retrieve a List ofBigDecimal
from a result set.List<Double>
CommonSelectMapper. selectManyDoubles(SelectStatementProvider selectStatement)
Retrieve a List ofDouble
from a result set.List<Integer>
CommonSelectMapper. selectManyIntegers(SelectStatementProvider selectStatement)
Retrieve a List ofInteger
from a result set.List<Long>
CommonSelectMapper. selectManyLongs(SelectStatementProvider selectStatement)
Retrieve a List ofLong
from a result set.List<Map<String,Object>>
CommonSelectMapper. selectManyMappedRows(SelectStatementProvider selectStatement)
Select any number of rows and return a List of Maps containing row values (one Map for each row returned).List<String>
CommonSelectMapper. selectManyStrings(SelectStatementProvider selectStatement)
Retrieve a List ofString
from a result set.default <R> R
CommonSelectMapper. selectOne(SelectStatementProvider selectStatement, Function<Map<String,Object>,R> rowMapper)
Select a single row of values and then convert the values to a custom type.BigDecimal
CommonSelectMapper. selectOneBigDecimal(SelectStatementProvider selectStatement)
Retrieve a singleBigDecimal
from a result set.Double
CommonSelectMapper. selectOneDouble(SelectStatementProvider selectStatement)
Retrieve a singleDouble
from a result set.Integer
CommonSelectMapper. selectOneInteger(SelectStatementProvider selectStatement)
Retrieve a singleInteger
from a result set.Long
CommonSelectMapper. selectOneLong(SelectStatementProvider selectStatement)
Retrieve a singleLong
from a result set.Map<String,Object>
CommonSelectMapper. selectOneMappedRow(SelectStatementProvider selectStatement)
Select a single row as a Map of values.String
CommonSelectMapper. selectOneString(SelectStatementProvider selectStatement)
Retrieve a singleString
from a result set.Optional<BigDecimal>
CommonSelectMapper. selectOptionalBigDecimal(SelectStatementProvider selectStatement)
Retrieve a singleBigDecimal
from a result set.Optional<Double>
CommonSelectMapper. selectOptionalDouble(SelectStatementProvider selectStatement)
Retrieve a singleDouble
from a result set.Optional<Integer>
CommonSelectMapper. selectOptionalInteger(SelectStatementProvider selectStatement)
Retrieve a singleInteger
from a result set.Optional<Long>
CommonSelectMapper. selectOptionalLong(SelectStatementProvider selectStatement)
Retrieve a singleLong
from a result set.Optional<String>
CommonSelectMapper. selectOptionalString(SelectStatementProvider selectStatement)
Retrieve a singleString
from a result set. -
Uses of SelectStatementProvider in org.mybatis.dynamic.sql.util.spring
Methods in org.mybatis.dynamic.sql.util.spring with parameters of type SelectStatementProvider Modifier and Type Method Description long
NamedParameterJdbcTemplateExtensions. count(SelectStatementProvider countStatement)
<T> List<T>
NamedParameterJdbcTemplateExtensions. selectList(SelectStatementProvider selectStatement, org.springframework.jdbc.core.RowMapper<T> rowMapper)
<T> Optional<T>
NamedParameterJdbcTemplateExtensions. selectOne(SelectStatementProvider selectStatement, org.springframework.jdbc.core.RowMapper<T> rowMapper)
-
Uses of SelectStatementProvider in org.mybatis.dynamic.sql.util.springbatch
Classes in org.mybatis.dynamic.sql.util.springbatch that implement SelectStatementProvider Modifier and Type Class Description static class
SpringBatchPagingReaderSelectModel.LimitAndOffsetDecorator
Methods in org.mybatis.dynamic.sql.util.springbatch that return SelectStatementProvider Modifier and Type Method Description SelectStatementProvider
SpringBatchCursorReaderSelectModel. render()
SelectStatementProvider
SpringBatchPagingReaderSelectModel. render()
Methods in org.mybatis.dynamic.sql.util.springbatch with parameters of type SelectStatementProvider Modifier and Type Method Description static Map<String,Object>
SpringBatchUtility. toParameterValues(SelectStatementProvider selectStatement)
Constructors in org.mybatis.dynamic.sql.util.springbatch with parameters of type SelectStatementProvider Constructor Description LimitAndOffsetDecorator(SelectStatementProvider delegate)
-