public interface Converter
<T> T convert(Object source, Class<T> toClass) throws Exception
T - The class to convert to.source - The object to convert.toClass - The class to convert to.Exception - Any exception may be throw by a Converter on error.