Uses of Interface
io.helidon.common.mapper.Mapper
-
Packages that use Mapper Package Description io.helidon.common.mapper Support for mapping of types.io.helidon.common.mapper.spi SPI to providemappers
forMapperManager
.io.helidon.common.reactive Common reactive library for Helidon projects. -
-
Uses of Mapper in io.helidon.common.mapper
Methods in io.helidon.common.mapper with parameters of type Mapper Modifier and Type Method Description <S,T>
MapperManager.BuilderMapperManager.Builder. addMapper(Mapper<S,T> mapper, GenericType<S> sourceType, GenericType<T> targetType)
Add a mapper to the list of mapper.<S,T>
MapperManager.BuilderMapperManager.Builder. addMapper(Mapper<S,T> mapper, GenericType<S> sourceType, GenericType<T> targetType, int priority)
Add a mapper to the list of mapper with custom priority.<S,T>
MapperManager.BuilderMapperManager.Builder. addMapper(Mapper<S,T> mapper, Class<S> sourceType, Class<T> targetType)
Add a mapper to the list of mapper.<S,T>
MapperManager.BuilderMapperManager.Builder. addMapper(Mapper<S,T> mapper, Class<S> sourceType, Class<T> targetType, int priority)
Add a mapper to the list of mapper with a custom priority. -
Uses of Mapper in io.helidon.common.mapper.spi
Methods in io.helidon.common.mapper.spi that return types with arguments of type Mapper Modifier and Type Method Description default <SOURCE,TARGET>
Optional<Mapper<?,?>>MapperProvider. mapper(GenericType<SOURCE> sourceType, GenericType<TARGET> targetType)
Find a mapper that is capable of mapping from source to target types.<SOURCE,TARGET>
Optional<Mapper<?,?>>MapperProvider. mapper(Class<SOURCE> sourceClass, Class<TARGET> targetClass)
Find a mapper that is capable of mapping from source to target classes. -
Uses of Mapper in io.helidon.common.reactive
Methods in io.helidon.common.reactive with parameters of type Mapper Modifier and Type Method Description default <U> Multi<U>
Multi. map(Mapper<T,U> mapper)
default <U> Single<U>
Single. map(Mapper<T,U> mapper)
default <U> Multi<U>
Single. mapMany(Mapper<T,Flow.Publisher<U>> mapper)
-