Uses of Interface
org.jdbi.v3.core.result.ResultIterator
-
Packages that use ResultIterator 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.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution.org.jdbi.v3.sqlobject.statement.internal -
-
Uses of ResultIterator in org.jdbi.v3.core.result
Classes in org.jdbi.v3.core.result that implement ResultIterator Modifier and Type Class Description static classResultIterable.ResultIteratorDelegate<T,R>An implementation ofResultIteratorthat delegates calls to the iterator provided in the constructor.Fields in org.jdbi.v3.core.result declared as ResultIterator Modifier and Type Field Description private ResultIterator<T>ResultIterable.ResultIteratorDelegate. delegateMethods in org.jdbi.v3.core.result that return ResultIterator Modifier and Type Method Description protected ResultIterator<T>ResultIterable.ResultIteratorDelegate. getDelegate()ResultIterator<T>ResultIterable. iterator()Stream all the rows of the result set out with anIterator.Methods in org.jdbi.v3.core.result with parameters of type ResultIterator Modifier and Type Method Description static <T> ResultIterable<T>ResultIterable. of(ResultIterator<T> iterator)Returns a ResultIterable backed by the given iterator.voidIteratorConsumer. useIterator(ResultIterator<T> iterator)Will be invoked with result iterator.RIteratorCallback. withIterator(ResultIterator<T> iterator)Will be invoked with a Iterator<T>.Constructors in org.jdbi.v3.core.result with parameters of type ResultIterator Constructor Description ResultIteratorDelegate(ResultIterator<T> del) -
Uses of ResultIterator in org.jdbi.v3.core.result.internal
Classes in org.jdbi.v3.core.result.internal that implement ResultIterator Modifier and Type Class Description (package private) classResultSetResultIterator<T>Methods in org.jdbi.v3.core.result.internal that return ResultIterator Modifier and Type Method Description ResultIterator<T>ResultSetResultIterable. iterator() -
Uses of ResultIterator in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement that return ResultIterator Modifier and Type Method Description ResultIterator<java.lang.Integer>PreparedBatch. executeAndGetModCount()Execute the batch and return the mod counts as inexecute, but as a Jdbi result iterator instead of an array. -
Uses of ResultIterator in org.jdbi.v3.sqlobject.statement.internal
Fields in org.jdbi.v3.sqlobject.statement.internal with type parameters of type ResultIterator Modifier and Type Field Description private java.util.function.Function<PreparedBatch,ResultIterator<?>>SqlBatchHandler. batchIntermediateMethods in org.jdbi.v3.sqlobject.statement.internal that return ResultIterator Modifier and Type Method Description private ResultIterator<?>SqlBatchHandler. executeBatch(Handle handle, java.util.function.Supplier<PreparedBatch> preparedBatchSupplier)protected ResultIterator<?>ResultReturner.ResultIteratorReturner. mappedResult(ResultIterable<?> iterable, StatementContext ctx)protected ResultIterator<?>ResultReturner.ResultIterableReturner. reducedResult(java.util.stream.Stream<?> stream, StatementContext ctx)protected ResultIterator<?>ResultReturner.ResultIteratorReturner. reducedResult(java.util.stream.Stream<?> stream, StatementContext ctx)Methods in org.jdbi.v3.sqlobject.statement.internal that return types with arguments of type ResultIterator Modifier and Type Method Description private java.util.function.Function<PreparedBatch,ResultIterator<?>>SqlBatchHandler. mapToBoolean(java.util.function.Function<PreparedBatch,ResultIterator<?>> modCounts)Method parameters in org.jdbi.v3.sqlobject.statement.internal with type arguments of type ResultIterator Modifier and Type Method Description private java.util.function.Function<PreparedBatch,ResultIterator<?>>SqlBatchHandler. mapToBoolean(java.util.function.Function<PreparedBatch,ResultIterator<?>> modCounts)
-