I am trying to read generic info from a class. Here is what I am doing: first of all I have a class EntityHelper. Somewhere inside it I want to see what is actually that T. I know this can be done with:
(Class<T>) ((ParameterizedType)getClass().getGenericSuperclass()).getActualTypeArguments()[0];
but what method getGenericSuperClass returns is java.lang.Object - which is not correct since I know T is something else, for example DummyEntity.
Android platform I use is 7. Is this some kind of a bug or I am missing something important?
java.lang.reflect.TypetoClass<T>? – Prince John Wesley Jun 8 '11 at 9:16Class implements Type- i missed it. – Prince John Wesley Jun 8 '11 at 9:46Class<T>type as a member variable. – Prince John Wesley Jun 8 '11 at 9:57