Uses of Interface
no.digipost.jdbc.RowMapper
-
Packages that use RowMapper Package Description no.digipost.jdbc -
-
Uses of RowMapper in no.digipost.jdbc
Subinterfaces of RowMapper in no.digipost.jdbc Modifier and Type Interface Description static 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 RowMapper Modifier and Type Class Description classAttributeMapper<R>An attribute mapper associates aColumnMapperwith anAttribute, and is used internally by anAttributesRowMapperto produce anAttributesMapwhere the values can be accessed in a type-safe manner.classAttributesRowMapperARowMapperproducingAttributesMaps.Methods in no.digipost.jdbc that return RowMapper Modifier and Type Method Description default <S> RowMapper<S>RowMapper. andThen(Function<? super R,S> resultMapper)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>RowMapper.Quadrupled. andThen(QuadFunction<? super T,? super U,? super V,? super W,S> resultMapper)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 RowMapper Modifier and Type Method Description default <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.default <A> RowMapper.Septupled<T,U,V,W,X,Z,A>RowMapper.Hextupled. combinedWith(RowMapper<A> otherMapper)default <D> RowMapper.Decupled<T,U,V,W,X,Z,A,B,C,D>RowMapper.Nonupled. combinedWith(RowMapper<D> otherMapper)default <C> RowMapper.Nonupled<T,U,V,W,X,Z,A,B,C>RowMapper.Octupled. combinedWith(RowMapper<C> otherMapper)default <Z> RowMapper.Hextupled<T,U,V,W,X,Z>RowMapper.Pentupled. combinedWith(RowMapper<Z> otherMapper)default <X> RowMapper.Pentupled<T,U,V,W,X>RowMapper.Quadrupled. combinedWith(RowMapper<X> otherMapper)default <B> RowMapper.Octupled<T,U,V,W,X,Z,A,B>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)
-