Uses of Class
org.jdbi.v3.core.result.RowView
Package
Description
mapper
s take the JDBC ResultSet and produce Java results.result
provides the streaming interface that reads rows from JDBC
and drives the mapper
and collector
processes to
produce results.-
Uses of RowView in org.jdbi.v3.core.mapper
-
Uses of RowView in org.jdbi.v3.core.result
Modifier and TypeMethodDescriptionvoid
RowReducer.accumulate
(C container, RowView rowView) Accumulate data from the current row into the result container.Modifier and TypeMethodDescription<A,
R> R BatchResultBearing.collectRows
(Collector<RowView, A, R> collector) default <A,
R> R ResultBearing.collectRows
(Collector<RowView, A, R> collector) Collect the results using the given collector.<K,
V> Stream <V> BatchResultBearing.reduceRows
(BiConsumer<Map<K, V>, RowView> accumulator) <U> U
BatchResultBearing.reduceRows
(U seed, BiFunction<U, RowView, U> accumulator) default <K,
V> Stream <V> ResultBearing.reduceRows
(BiConsumer<Map<K, V>, RowView> accumulator) Reduce the result rows using aMap<K, V>
as the result container.default <U> U
ResultBearing.reduceRows
(U seed, BiFunction<U, RowView, U> accumulator) Reduce the results.