I want to check whether a java.lang.reflect.Type instance represents an Emum object or not.
java.lang.reflect.Type
I can check whether it\'s an instance of a specific class us
if(type instanceof Class && ((Class>)type).isEnum())