Uses of Interface
org.jdbi.v3.core.result.RowReducer
-
Packages that use RowReducer Package Description org.jdbi.v3.core.result resultprovides the streaming interface that reads rows from JDBC and drives themapperandcollectorprocesses to produce results.org.jdbi.v3.sqlobject.statement Thesqlobject.statementannotations declare the type of statement that a SqlObject method should create, such as a@SqlQueryto return rows or a@SqlUpdateto modify rows and return the modification count.org.jdbi.v3.sqlobject.statement.internal -
-
Uses of RowReducer in org.jdbi.v3.core.result
Subinterfaces of RowReducer in org.jdbi.v3.core.result Modifier and Type Interface Description interfaceLinkedHashMapRowReducer<K,V>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 RowReducer Modifier and Type Method Description <C,R>
java.util.stream.Stream<R>BatchResultBearing. reduceRows(RowReducer<C,R> rowReducer)default <C,R>
java.util.stream.Stream<R>ResultBearing. reduceRows(RowReducer<C,R> rowReducer)Reduce the result rows using the given row reducer. -
Uses of RowReducer in org.jdbi.v3.sqlobject.statement
Methods in org.jdbi.v3.sqlobject.statement that return types with arguments of type RowReducer Modifier and Type Method Description java.lang.Class<? extends RowReducer<?,?>>value()The class implementingRowReducer. -
Uses of RowReducer in org.jdbi.v3.sqlobject.statement.internal
Methods in org.jdbi.v3.sqlobject.statement.internal that return RowReducer Modifier and Type Method Description (package private) static RowReducer<?,?>CustomizingStatementHandler. rowReducerFor(UseRowReducer annotation)
-