public interface Converter<SrcType,DstType>
DstType convert(SrcType src, TypeInfo<SrcType> srcType, TypeInfo<DstType> dstType) throws ConversionException
src.getClass().isAssignableFrom(srcType) == true
* DstType class is assignable from returned objectsrc - source objectsrcType - source object type infodstType - destination object type infoConversionExceptionCopyright © 2016. All rights reserved.