Uses of Interface
org.jdbi.v3.core.result.RowReducer
Packages that use RowReducer
Package
Description
result
provides the streaming interface that reads rows from JDBC
and drives the mapper
and collector
processes to
produce results.-
Uses of RowReducer in org.jdbi.v3.core.result
Subinterfaces of RowReducer in org.jdbi.v3.core.resultModifier and TypeInterfaceDescriptioninterface
A row reducer that usesLinkedHashMap
(which preserves insertion order) as a result container, and returnsmap.values().stream()
as the final result.Methods in org.jdbi.v3.core.result with parameters of type RowReducerModifier and TypeMethodDescriptiondefault <C,
R> Stream<R> ResultBearing.reduceRows
(RowReducer<C, R> reducer) Reduce the result rows using the given row reducer.