Uses of Class
org.jdbi.v3.core.result.RowView
Packages that use 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
Methods in org.jdbi.v3.core.mapper with parameters of type RowView -
Uses of RowView in org.jdbi.v3.core.result
Methods in org.jdbi.v3.core.result with parameters of type RowViewModifier and TypeMethodDescriptionvoid
RowReducer.accumulate
(C container, RowView rowView) Accumulate data from the current row into the result container.Method parameters in org.jdbi.v3.core.result with type arguments of type RowViewModifier 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.