Package com.github.dozermapper.core
Interface CustomConverter
-
- All Known Subinterfaces:
ConfigurableCustomConverter
- All Known Implementing Classes:
CustomMappingsLoader.ByReferenceConverter,DozerConverter
public interface CustomConverterPublic custom converter interface.In the Dozer mapping file(s), you can add some XML to tell Dozer to use a custom converter for certain class A and class B types. When a custom converter is specified for a class A and class B combination, Dozer will invoke the custom converter to perform the data mapping instead of the standard mapping logic.
https://dozermapper.github.io/gitbook/documentation/customconverter.html
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectconvert(Object existingDestinationFieldValue, Object sourceFieldValue, Class<?> destinationClass, Class<?> sourceClass)
-