Interface Mapper<F,T>
-
- Type Parameters:
F- the type to map from.T- the type to map to.
- All Known Subinterfaces:
BiMapper<F,T>,MultiBiMapper<F,T>,MultiMapper<F,T>
- All Known Implementing Classes:
NullSafeBiMapper,NullSafeMapper,NullSafeMultiBiMapper,NullSafeMultiMapper
public interface Mapper<F,T>Unidirectional type mapper.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tfrom(F input)Maps thefromtype to thetotype.
-