| Package | Description |
|---|---|
| org.jdbi.v3.core.mapper |
mappers take the JDBC ResultSet and produce Java results. |
| org.jdbi.v3.core.result |
result provides the streaming interface that reads rows from JDBC
and drives the mapper and collector processes to
produce results. |
| org.jdbi.v3.core.result.internal |
| Modifier and Type | Method and Description |
|---|---|
T |
RowViewMapper.map(RowView rowView)
Produce a single result item from the current row of a
RowView. |
| Modifier and Type | Method and Description |
|---|---|
void |
RowReducer.accumulate(C container,
RowView rowView)
Accumulate data from the current row into the result container.
|
| Modifier and Type | Method and Description |
|---|---|
default <A,R> R |
ResultBearing.collectRows(Collector<RowView,A,R> collector)
Collect the results using the given collector.
|
default <K,V> Stream<V> |
ResultBearing.reduceRows(BiConsumer<Map<K,V>,RowView> accumulator)
Reduce the result rows using a
Map<K, V> as the
result container. |
default <U> U |
ResultBearing.reduceRows(U seed,
BiFunction<U,RowView,U> accumulator)
Reduce the results.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RowViewImpl |
Copyright © 2019. All rights reserved.