Uses of Class
org.jdbi.v3.core.result.RowView
-
Packages that use RowView Package Description org.jdbi.v3.core.mapper mappers take the JDBC ResultSet and produce Java results.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 -
-
Uses of RowView in org.jdbi.v3.core.mapper
Methods in org.jdbi.v3.core.mapper with parameters of type RowView Modifier and Type Method Description TRowViewMapper. map(RowView rowView)Produce a single result item from the current row of aRowView. -
Uses of RowView in org.jdbi.v3.core.result
Methods in org.jdbi.v3.core.result with parameters of type RowView Modifier and Type Method Description voidRowReducer. 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 RowView Modifier and Type Method Description <A,R>
RBatchResultBearing. collectRows(java.util.stream.Collector<RowView,A,R> collector)default <A,R>
RResultBearing. collectRows(java.util.stream.Collector<RowView,A,R> collector)Collect the results using the given collector.<K,V>
java.util.stream.Stream<V>BatchResultBearing. reduceRows(java.util.function.BiConsumer<java.util.Map<K,V>,RowView> accumulator)<U> UBatchResultBearing. reduceRows(U seed, java.util.function.BiFunction<U,RowView,U> accumulator)default <K,V>
java.util.stream.Stream<V>ResultBearing. reduceRows(java.util.function.BiConsumer<java.util.Map<K,V>,RowView> accumulator)Reduce the result rows using aMap<K, V>as the result container.default <U> UResultBearing. reduceRows(U seed, java.util.function.BiFunction<U,RowView,U> accumulator)Reduce the results. -
Uses of RowView in org.jdbi.v3.core.result.internal
Subclasses of RowView in org.jdbi.v3.core.result.internal Modifier and Type Class Description classRowViewImpl
-