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
Class.isEnum() will do it for you.
Refer to Oracle Doc