Package no.digipost.jdbc
Interface RowMapper.Tripled<T,U,V>
- All Superinterfaces:
RowMapper<Tuple<Tuple<T,,U>, V>> RowMapper.Tupled<Tuple<T,U>, V>
- All Known Subinterfaces:
RowMapper.Decupled<T,,U, V, W, X, Z, A, B, C, D> RowMapper.Hextupled<T,,U, V, W, X, Z> RowMapper.Nonupled<T,,U, V, W, X, Z, A, B, C> RowMapper.Octupled<T,,U, V, W, X, Z, A, B> RowMapper.Pentupled<T,,U, V, W, X> RowMapper.Quadrupled<T,,U, V, W> RowMapper.Septupled<T,U, V, W, X, Z, A>
-
Nested Class Summary
Nested classes/interfaces inherited from interface no.digipost.jdbc.RowMapper
RowMapper.Decupled<T,U, V, W, X, Z, A, B, C, D>, RowMapper.Hextupled<T, U, V, W, X, Z>, RowMapper.Nonupled<T, U, V, W, X, Z, A, B, C>, RowMapper.Octupled<T, U, V, W, X, Z, A, B>, RowMapper.Pentupled<T, U, V, W, X>, RowMapper.Quadrupled<T, U, V, W>, RowMapper.Septupled<T, U, V, W, X, Z, A>, RowMapper.Tripled<T, U, V>, RowMapper.Tupled<T, U> -
Method Summary
Modifier and TypeMethodDescriptiondefault <S> RowMapper<S>andThen(TriFunction<? super T, ? super U, ? super V, S> resultMapper) Create a new mapper which takes the three results of this mapper and applies the givenTriFunctionto yield another result.default <W> RowMapper.Quadrupled<T,U, V, W> combinedWith(RowMapper<W> otherMapper) Create a new row mapper which first runs this mapper and then the given mapper, and combines the two results into a tuple-type container.Methods inherited from interface no.digipost.jdbc.RowMapper.Tupled
andThen
-
Method Details
-
andThen
Create a new mapper which takes the three results of this mapper and applies the givenTriFunctionto yield another result.- Type Parameters:
S- the output type of the givenresultMapperfunction, which also become the type of the result produced by the new row mapper.- Parameters:
resultMapper- the function to apply to the result- Returns:
- the new row mapper
-
combinedWith
Description copied from interface:RowMapperCreate a new row mapper which first runs this mapper and then the given mapper, and combines the two results into a tuple-type container.- Specified by:
combinedWithin interfaceRowMapper<T>- Specified by:
combinedWithin interfaceRowMapper.Tupled<T,U> - Parameters:
otherMapper- the mapper to run in addition to this.- Returns:
- the new mapper
-