/**********************************************************\ | | | hprose | | | | Official WebSite: http://www.hprose.com/ | | http://www.hprose.org/ | | | \**********************************************************/ /**********************************************************\ * * * Converter.java * * * * Converter interface for Java. * * * * LastModified: Aug 1, 2016 * * Author: Ma Bingyao <andot@hprose.com> * * * \**********************************************************/ package hprose.io.convert; import java.lang.reflect.Type; public interface Converter<T> { T convertTo(Object obj, Type type); }