Uses of Interface
org.jdbi.v3.core.result.ResultIterable
-
Packages that use ResultIterable Package Description org.jdbi.v3.core.result resultprovides the streaming interface that reads rows from JDBC and drives themapperandcollectorprocesses to produce results.org.jdbi.v3.core.result.internal org.jdbi.v3.sqlobject.statement.internal -
-
Uses of ResultIterable in org.jdbi.v3.core.result
Subinterfaces of ResultIterable in org.jdbi.v3.core.result Modifier and Type Interface Description interfaceBatchResultIterable<T>Extend theResultIterablefor batch operations.Methods in org.jdbi.v3.core.result that return ResultIterable Modifier and Type Method Description default ResultIterable<T>ResultIterable. filter(java.util.function.Predicate<? super T> predicate)Convenience method to filter theResultIterableby applying the specifiedPredicate.
This method has the look and feel ofStream.filter(Predicate)without making use of streams.default <T> ResultIterable<T>ResultBearing. map(ColumnMapper<T> mapper)Maps this result set to aResultIterable, using the given column mapper.default <T> ResultIterable<T>ResultBearing. map(RowMapper<T> mapper)Maps this result set to aResultIterable, using the given row mapper.default <T> ResultIterable<T>ResultBearing. map(RowViewMapper<T> mapper)Maps this result set to aResultIterable, using the givenRowViewMapper.default <R> ResultIterable<R>ResultIterable. map(java.util.function.Function<? super T,? extends R> mapper)Returns aResultIterable<U>derived from thisResultIterable<T>, by transforming elements using the given mapper function.default <T> ResultIterable<T>ResultBearing. mapTo(java.lang.Class<T> type)Maps this result set to aResultIterableof the given element type.default ResultIterable<?>ResultBearing. mapTo(java.lang.reflect.Type type)Maps this result set to aResultIterableof the given element type.default <T> ResultIterable<T>ResultBearing. mapTo(GenericType<T> type)Maps this result set to aResultIterableof the given element type.default <T> ResultIterable<T>ResultBearing. mapTo(QualifiedType<T> type)Maps this result set to aResultIterableof the given qualified element type.default <T> ResultIterable<T>ResultBearing. mapToBean(java.lang.Class<T> type)Maps this result set to aResultIterableof the given element type, usingBeanMapper.default ResultIterable<java.util.Map<java.lang.String,java.lang.Object>>ResultBearing. mapToMap()Maps this result set to aResultIterableofMap<String,Object>.default <T> ResultIterable<java.util.Map<java.lang.String,T>>ResultBearing. mapToMap(java.lang.Class<T> valueType)Maps this result set to aMapofStringand the given value class.default <T> ResultIterable<java.util.Map<java.lang.String,T>>ResultBearing. mapToMap(GenericType<T> valueType)Maps this result set to aMapofStringand the given value type.static <T> ResultIterable<T>ResultIterable. of(java.util.function.Supplier<java.sql.ResultSet> resultSetSupplier, RowMapper<T> mapper, StatementContext ctx)Returns a ResultIterable backed by the given result set supplier, mapper, and context.static <T> ResultIterable<T>ResultIterable. of(ResultIterator<T> iterator)Returns a ResultIterable backed by the given iterator.Methods in org.jdbi.v3.core.result with parameters of type ResultIterable Modifier and Type Method Description static <U> BatchResultIterable<U>BatchResultIterable. of(ResultIterable<U> delegate, java.util.function.Supplier<int[]> modifiedRowCountsSupplier) -
Uses of ResultIterable in org.jdbi.v3.core.result.internal
Classes in org.jdbi.v3.core.result.internal that implement ResultIterable Modifier and Type Class Description classResultSetResultIterable<T> -
Uses of ResultIterable in org.jdbi.v3.sqlobject.statement.internal
Methods in org.jdbi.v3.sqlobject.statement.internal that return ResultIterable Modifier and Type Method Description protected ResultIterable<?>ResultReturner.ResultIterableReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)Methods in org.jdbi.v3.sqlobject.statement.internal with parameters of type ResultIterable Modifier and Type Method Description protected java.lang.ObjectResultReturner.CollectedResultReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected java.lang.VoidResultReturner.ConsumerResultReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected java.util.Iterator<?>ResultReturner.IteratorReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected abstract java.lang.ObjectResultReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected ResultIterable<?>ResultReturner.ResultIterableReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected ResultIterator<?>ResultReturner.ResultIteratorReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected java.lang.ObjectResultReturner.SingleValueReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected java.util.stream.Stream<?>ResultReturner.StreamReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected java.lang.VoidResultReturner.VoidReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)
-