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 SelectStatementProviderSelectModel. 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 classDefaultSelectStatementProviderMethods in org.mybatis.dynamic.sql.select.render that return SelectStatementProvider Modifier and Type Method Description SelectStatementProviderSelectRenderer. 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 StringSqlProviderAdapter. 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 SelectStatementProviderMyBatis3Utils. count(BasicColumn column, SqlTable table, CountDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. countDistinct(BasicColumn column, SqlTable table, CountDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. countFrom(CountDSL<SelectModel> start, CountDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. countFrom(SqlTable table, CountDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. select(BasicColumn[] selectList, SqlTable table, SelectDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. select(QueryExpressionDSL<SelectModel> start, SelectDSLCompleter completer)static SelectStatementProviderMyBatis3Utils. 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 longCommonCountMapper. 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 ofBigDecimalfrom a result set.List<Double>CommonSelectMapper. selectManyDoubles(SelectStatementProvider selectStatement)Retrieve a List ofDoublefrom a result set.List<Integer>CommonSelectMapper. selectManyIntegers(SelectStatementProvider selectStatement)Retrieve a List ofIntegerfrom a result set.List<Long>CommonSelectMapper. selectManyLongs(SelectStatementProvider selectStatement)Retrieve a List ofLongfrom 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 ofStringfrom a result set.default <R> RCommonSelectMapper. selectOne(SelectStatementProvider selectStatement, Function<Map<String,Object>,R> rowMapper)Select a single row of values and then convert the values to a custom type.BigDecimalCommonSelectMapper. selectOneBigDecimal(SelectStatementProvider selectStatement)Retrieve a singleBigDecimalfrom a result set.DoubleCommonSelectMapper. selectOneDouble(SelectStatementProvider selectStatement)Retrieve a singleDoublefrom a result set.IntegerCommonSelectMapper. selectOneInteger(SelectStatementProvider selectStatement)Retrieve a singleIntegerfrom a result set.LongCommonSelectMapper. selectOneLong(SelectStatementProvider selectStatement)Retrieve a singleLongfrom a result set.Map<String,Object>CommonSelectMapper. selectOneMappedRow(SelectStatementProvider selectStatement)Select a single row as a Map of values.StringCommonSelectMapper. selectOneString(SelectStatementProvider selectStatement)Retrieve a singleStringfrom a result set.Optional<BigDecimal>CommonSelectMapper. selectOptionalBigDecimal(SelectStatementProvider selectStatement)Retrieve a singleBigDecimalfrom a result set.Optional<Double>CommonSelectMapper. selectOptionalDouble(SelectStatementProvider selectStatement)Retrieve a singleDoublefrom a result set.Optional<Integer>CommonSelectMapper. selectOptionalInteger(SelectStatementProvider selectStatement)Retrieve a singleIntegerfrom a result set.Optional<Long>CommonSelectMapper. selectOptionalLong(SelectStatementProvider selectStatement)Retrieve a singleLongfrom a result set.Optional<String>CommonSelectMapper. selectOptionalString(SelectStatementProvider selectStatement)Retrieve a singleStringfrom 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 longNamedParameterJdbcTemplateExtensions. 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 classSpringBatchPagingReaderSelectModel.LimitAndOffsetDecoratorMethods in org.mybatis.dynamic.sql.util.springbatch that return SelectStatementProvider Modifier and Type Method Description SelectStatementProviderSpringBatchCursorReaderSelectModel. render()SelectStatementProviderSpringBatchPagingReaderSelectModel. 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)
-