Uses of Interface
no.digipost.jdbc.RowMapper
Packages that use RowMapper
-
Uses of RowMapper in no.digipost.jdbc
Subinterfaces of RowMapper in no.digipost.jdbcModifier and TypeInterfaceDescriptionstatic interfaceRowMapper.Decupled<T,U, V, W, X, Z, A, B, C, D> static interfaceRowMapper.Hextupled<T,U, V, W, X, Z> static interfaceRowMapper.Nonupled<T,U, V, W, X, Z, A, B, C> static interfaceRowMapper.Octupled<T,U, V, W, X, Z, A, B> static interfaceRowMapper.Pentupled<T,U, V, W, X> static interfaceRowMapper.Quadrupled<T,U, V, W> static interfaceRowMapper.Septupled<T,U, V, W, X, Z, A> static interfaceRowMapper.Tripled<T,U, V> static interfaceRowMapper.Tupled<T,U> Classes in no.digipost.jdbc that implement RowMapperModifier and TypeClassDescriptionfinal classAn attribute mapper associates aColumnMapperwith anAttribute, and is used internally by anAttributesRowMapperto produce anAttributesMapwhere the values can be accessed in a type-safe manner.classARowMapperproducingAttributesMaps.Methods in no.digipost.jdbc that return RowMapperModifier and TypeMethodDescriptiondefault <S> RowMapper<S>Create a new mapper which takes the result of this mapper and applies the givenFunctionto yield another result.default <S> RowMapper<S>RowMapper.Decupled.andThen(DecaFunction<? super T, ? super U, ? super V, ? super W, ? super X, ? super Z, ? super A, ? super B, ? super C, ? super D, S> resultMapper) Create a new mapper which takes the ten results of this mapper and applies the givenDecaFunctionto yield another result.default <S> RowMapper<S>RowMapper.Hextupled.andThen(HexaFunction<? super T, ? super U, ? super V, ? super W, ? super X, ? super Z, S> resultMapper) Create a new mapper which takes the six results of this mapper and applies the givenHexaFunctionto yield another result.default <S> RowMapper<S>RowMapper.Nonupled.andThen(NonaFunction<? super T, ? super U, ? super V, ? super W, ? super X, ? super Z, ? super A, ? super B, ? super C, S> resultMapper) Create a new mapper which takes the nine results of this mapper and applies the givenNonaFunctionto yield another result.default <S> RowMapper<S>RowMapper.Octupled.andThen(OctoFunction<? super T, ? super U, ? super V, ? super W, ? super X, ? super Z, ? super A, ? super B, S> resultMapper) Create a new mapper which takes the eight results of this mapper and applies the givenOctoFunctionto yield another result.default <S> RowMapper<S>RowMapper.Pentupled.andThen(PentaFunction<? super T, ? super U, ? super V, ? super W, ? super X, S> resultMapper) Create a new mapper which takes the five results of this mapper and applies the givenPentaFunctionto yield another result.default <S> RowMapper<S>Create a new mapper which takes the four results of this mapper and applies the givenQuadFunctionto yield another result.default <S> RowMapper<S>RowMapper.Septupled.andThen(SeptiFunction<? super T, ? super U, ? super V, ? super W, ? super X, ? super Z, ? super A, S> resultMapper) Create a new mapper which takes the seven results of this mapper and applies the givenSeptiFunctionto yield another result.default <S> RowMapper<S>RowMapper.Tripled.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 <S> RowMapper<S>RowMapper.Tupled.andThen(BiFunction<? super T, ? super U, S> resultMapper) Create a new mapper which takes the two results of this mapper and applies the givenBiFunctionto yield another result.static <R> RowMapper<R>RowMapper.of(ThrowingFunction<ResultSet, R, SQLException> mapper) Methods in no.digipost.jdbc with parameters of type RowMapperModifier and TypeMethodDescriptiondefault <S> RowMapper.Tupled<R,S> RowMapper.combinedWith(RowMapper<S> 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.RowMapper.Hextupled.combinedWith(RowMapper<A> otherMapper) RowMapper.Nonupled.combinedWith(RowMapper<D> otherMapper) RowMapper.Octupled.combinedWith(RowMapper<C> otherMapper) RowMapper.Pentupled.combinedWith(RowMapper<Z> otherMapper) default <X> RowMapper.Pentupled<T,U, V, W, X> RowMapper.Quadrupled.combinedWith(RowMapper<X> otherMapper) RowMapper.Septupled.combinedWith(RowMapper<B> otherMapper) default <W> RowMapper.Quadrupled<T,U, V, W> RowMapper.Tripled.combinedWith(RowMapper<W> otherMapper) default <V> RowMapper.Tripled<T,U, V> RowMapper.Tupled.combinedWith(RowMapper<V> otherMapper)