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?

link|improve this question

80% accept rate
how can you cast java.lang.reflect.Type to Class<T>? – Prince John Wesley Jun 8 '11 at 9:16
1  
Compiler doesn't object and it works in runtime. For example: (Class<?>) ((ParameterizedType) f.getGenericType()).getActualTypeArguments()[0]; where f is java.lang.Field. Class implements Type - maybe it is not nice, but it works. – ezamur Jun 8 '11 at 9:32
Class implements Type- i missed it. – Prince John Wesley Jun 8 '11 at 9:46
how can you get the actual generic type? generics in java is a compile time mechanism(Type erasure)‌​. – Prince John Wesley Jun 8 '11 at 9:53
only way to achieve this effect is to save the Class<T> type as a member variable. – Prince John Wesley Jun 8 '11 at 9:57
feedback

1 Answer

up vote 0 down vote accepted

You can not get the generic type of the argument. Generics are implemented using a technique called type erasure. Only way to achieve this effect is to save the Class<T> type( i.e. Use Class Literals as Runtime-Type Tokens ).

link|improve this answer
It is implemented using type erasure but the information about generic type is kept. If that wouldn't be true, method java.lang.Class#getGenericSuperclass() wouldn't make much sense. Little code fragment I posted in one of my comments on the question retrieves the actual type of objects contained in the list (which uses generics) and it is working fine, hence this can be done. – ezamur Jun 8 '11 at 10:19
@ezamur: compiler writes the type(T) as comment in the class file. – Prince John Wesley Jun 8 '11 at 10:24
@ezamur: do you want to see the type that is declared(like T,S...)? – Prince John Wesley Jun 8 '11 at 10:25
@ezamur: print the java.lang.Field and see the type. – Prince John Wesley Jun 8 '11 at 10:26
Ok, this might be trickier than I expected. My approach doesn't work, as you already said, unfortunately. On the other hand, if I use it on a member variable, it works. For example, if we have a class containing property List<String> aList, next fragment of code will give us right answer to the question what is the type of objects in the list: ((ParameterizedType)getClass().getField("aList").getGenericType()).getActualType‌​Parameters()[0]. Trouble is I cannot find a way to do the same on a class argument. I guess I will have to accept your answer. Thanks for your time and help. – ezamur Jun 8 '11 at 10:32
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.