Constructs new instance of destinationClass and performs mapping between from source @param source object to convert from @param destinationClass type to convert to @param type to convert to @return mapped object @throws MappingException mapping failure
(Object source, Class<T> destinationClass)
| 32 | * @throws MappingException mapping failure |
| 33 | */ |
| 34 | <T> T map(Object source, Class<T> destinationClass) throws MappingException; |
| 35 | |
| 36 | /** |
| 37 | * Performs mapping between source and destination objects |
no outgoing calls