How can I convert java.lang.reflect.Type to Class clazz?
java.lang.reflect.Type
Class clazz
If I have one method as next which has an argument of Class
Class
Did you mean this?
public void oneMethod(T clazz) { } public void someMethod(Type type) { oneMethod(type); }