Uses of Interface
io.helidon.common.mapper.Mapper
-
Uses of Mapper in io.helidon.common.mapper
Modifier and TypeMethodDescriptionMapperManager.mapper
(GenericType<SOURCE> sourceType, GenericType<TARGET> targetType, String... qualifiers) Obtain a mapper for the provided types and qualifiers.Modifier and TypeMethodDescription<S,
T> MapperManager.Builder MapperManager.Builder.addMapper
(Mapper<S, T> mapper, GenericType<S> sourceType, GenericType<T> targetType, double weight, String... qualifiers) Add a mapper to the list of mapper with custom priority.<S,
T> MapperManager.Builder MapperManager.Builder.addMapper
(Mapper<S, T> mapper, GenericType<S> sourceType, GenericType<T> targetType, String... qualifiers) Add a mapper to the list of mapper.<S,
T> MapperManager.Builder MapperManager.Builder.addMapper
(Mapper<S, T> mapper, Class<S> sourceType, Class<T> targetType, double weight, String... qualifiers) Add a mapper to the list of mapper with a custom priority.<S,
T> MapperManager.Builder MapperManager.Builder.addMapper
(Mapper<S, T> mapper, Class<S> sourceType, Class<T> targetType, String... qualifiers) Add a mapper to the list of mapper. -
Uses of Mapper in io.helidon.common.mapper.spi
Modifier and TypeMethodDescriptionMapper
<?, ?> MapperProvider.ProviderResponse.mapper()
Returns the value of themapper
record component.ModifierConstructorDescriptionProviderResponse
(MapperProvider.Support support, Mapper<?, ?> mapper) Creates an instance of aProviderResponse
record class.