Uses of Interface
com.github.dozermapper.core.CustomConverter
-
Packages that use CustomConverter Package Description com.github.dozermapper.core Core mapping APIcom.github.dozermapper.core.loader Mapping definition loadercom.github.dozermapper.core.loader.api Mapping via API -
-
Uses of CustomConverter in com.github.dozermapper.core
Subinterfaces of CustomConverter in com.github.dozermapper.core Modifier and Type Interface Description interfaceConfigurableCustomConverterPublic custom converter interface.Classes in com.github.dozermapper.core that implement CustomConverter Modifier and Type Class Description classDozerConverter<A,B>This class should be extended in order to implement new Custom Converters for value transformation.Methods in com.github.dozermapper.core that return types with arguments of type CustomConverter Modifier and Type Method Description List<CustomConverter>DozerBeanMapper. getCustomConverters()Returns a list of registeredCustomConverterList<CustomConverter>MapperModelContext. getCustomConverters()Returns a list of registeredCustomConverterMap<String,CustomConverter>DozerBeanMapper. getCustomConvertersWithId()Returns a list of registeredCustomConverterwhich can be referenced in mapping by provided ID.Map<String,CustomConverter>MapperModelContext. getCustomConvertersWithId()Returns a list of registeredCustomConverterwhich can be referenced in mapping by provided ID.Methods in com.github.dozermapper.core with parameters of type CustomConverter Modifier and Type Method Description DozerBeanMapperBuilderDozerBeanMapperBuilder. withCustomConverter(CustomConverter customConverter)Registers aCustomConverterfor the mapper.DozerBeanMapperBuilderDozerBeanMapperBuilder. withCustomConverters(CustomConverter... customConverters)Registers aCustomConverterfor the mapper.DozerBeanMapperBuilderDozerBeanMapperBuilder. withCustomConverterWithId(String converterId, CustomConverter converter)Registers aCustomConverterwhich can be referenced in mapping by provided ID.Method parameters in com.github.dozermapper.core with type arguments of type CustomConverter Modifier and Type Method Description DozerBeanMapperBuilderDozerBeanMapperBuilder. withCustomConverters(List<CustomConverter> customConverters)Registers aCustomConverterfor the mapper.DozerBeanMapperBuilderDozerBeanMapperBuilder. withCustomConvertersWithIds(Map<String,CustomConverter> customConvertersWithId)Registers aCustomConverterwhich can be referenced in mapping by provided ID.Constructor parameters in com.github.dozermapper.core with type arguments of type CustomConverter Constructor Description MappingProcessor(ClassMappings classMappings, Configuration globalConfiguration, CacheManager cacheMgr, List<CustomConverter> customConverterObjects, EventManager eventManager, CustomFieldMapper customFieldMapper, Map<String,CustomConverter> customConverterObjectsWithId, BeanContainer beanContainer, DestBeanCreator destBeanCreator, DestBeanBuilderCreator destBeanBuilderCreator, BeanMappingGenerator beanMappingGenerator, PropertyDescriptorFactory propertyDescriptorFactory)MappingProcessor(ClassMappings classMappings, Configuration globalConfiguration, CacheManager cacheMgr, List<CustomConverter> customConverterObjects, EventManager eventManager, CustomFieldMapper customFieldMapper, Map<String,CustomConverter> customConverterObjectsWithId, BeanContainer beanContainer, DestBeanCreator destBeanCreator, DestBeanBuilderCreator destBeanBuilderCreator, BeanMappingGenerator beanMappingGenerator, PropertyDescriptorFactory propertyDescriptorFactory) -
Uses of CustomConverter in com.github.dozermapper.core.loader
Classes in com.github.dozermapper.core.loader that implement CustomConverter Modifier and Type Class Description static classCustomMappingsLoader.ByReferenceConverterReturns the source field value as a reference, regardless of other parameters.Method parameters in com.github.dozermapper.core.loader with type arguments of type CustomConverter Modifier and Type Method Description voidDozerBuilder.FieldMappingBuilder. customConverter(Class<? extends CustomConverter> type) -
Uses of CustomConverter in com.github.dozermapper.core.loader.api
Method parameters in com.github.dozermapper.core.loader.api with type arguments of type CustomConverter Modifier and Type Method Description static FieldsMappingOptionFieldsMappingOptions. customConverter(Class<? extends CustomConverter> type)static FieldsMappingOptionFieldsMappingOptions. customConverter(Class<? extends CustomConverter> type, String parameter)
-