Uses of Class
org.jdbi.v3.core.result.JoinRowReducer
Packages that use JoinRowReducer
Package
Description
result provides the streaming interface that reads rows from JDBC
and drives the mapper and collector processes to
produce results.-
Uses of JoinRowReducer in org.jdbi.v3.core.result
Methods in org.jdbi.v3.core.result that return JoinRowReducerModifier and TypeMethodDescription<J> JoinRowReducer<R> JoinRowReducer.many(String prefix, Class<J> joinedType, BiConsumer<? super R, ? super J> linker) Adds a to-many relation to a type that is declared elsewhere in the reducer, or that has no relations.<J> JoinRowReducer<R> JoinRowReducer.many(String prefix, JoinRowReducer<J> joined, BiConsumer<? super R, ? super J> linker) Adds a to-many relation to a type with relations of its own.JoinRowReducer.mappedBy(BiFunction<Class<?>, String, ? extends RowMapper<?>> mapperFactory) Uses the given factory to create the mapper for a type and column prefix, for exampleBeanMapper::of, instead of the registered mapper.static <R> JoinRowReducer<R> Creates a reducer for a type whose key column isid.static <R> JoinRowReducer<R> Creates a reducer for a type with the given key column.<J> JoinRowReducer<R> JoinRowReducer.one(String prefix, Class<J> joinedType, BiConsumer<? super R, ? super J> linker) Adds a to-one relation to a type that is declared elsewhere in the reducer, or that has no relations.<J> JoinRowReducer<R> JoinRowReducer.one(String prefix, JoinRowReducer<J> joined, BiConsumer<? super R, ? super J> linker) Adds a to-one relation to a type with relations of its own.Methods in org.jdbi.v3.core.result with parameters of type JoinRowReducerModifier and TypeMethodDescription<J> JoinRowReducer<R> JoinRowReducer.many(String prefix, JoinRowReducer<J> joined, BiConsumer<? super R, ? super J> linker) Adds a to-many relation to a type with relations of its own.<J> JoinRowReducer<R> JoinRowReducer.one(String prefix, JoinRowReducer<J> joined, BiConsumer<? super R, ? super J> linker) Adds a to-one relation to a type with relations of its own.