Module com.remondis.remap
Package com.remondis.remap
Class TypeMapping.TypeMappingFunctionBuilder<S,D>
- java.lang.Object
-
- com.remondis.remap.TypeMapping.TypeMappingFunctionBuilder<S,D>
-
- Enclosing class:
- TypeMapping<S,D>
public static class TypeMapping.TypeMappingFunctionBuilder<S,D> extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypeMapping<S,D>applying(Function<S,D> conversionFunction)Specified a conversion function that performs the type mapping.
-
-
-
Method Detail
-
applying
public TypeMapping<S,D> applying(Function<S,D> conversionFunction)
Specified a conversion function that performs the type mapping. When usingFunction, mapping into destination instances will not supported by the resulting mapper.- Parameters:
conversionFunction- The conversion function.- Returns:
- Returns the
TypeMappingfor use within aMappingConfigurationconfiguration.
-
-