vote up 4 vote down star
1
public Interface Foo<T extends Colors>{...}

Is there a way to retrieve which T was given for an implementation of Foo?

For example,

public Class FooImpl implements Foo<Green>{..}

Would return Green.

flag

From where are you attempting to retrieve it? – Alcon Nov 3 at 20:50

6 Answers

vote up 11 vote down check

Contrary to other answers, you can obtain the type of a generic parameter. For example, adding this to a method inside a generic class will obtain the first generic parameter of the class (T in your case):

ParameterizedType type = (ParameterizedType) getClass().getGenericSuperclass();
type.getActualTypeArguments()[0]

I use this technique in a generic Hibernate DAO I wrote so I can obtain the actual class being persisted because it is needed by Hibernate. It works!

link|flag
This will give the declared parameter type -- but it looks like that is what is wanted anyway. – Kathy Van Stone Nov 3 at 21:04
1  
+1, always fun to learn knew things, even when you have to be wrong to do so. – JaredPar Nov 3 at 21:06
Thanks for following up on this. I was thinking the answer was what @JaredPar said before i even asked the question, so i guess i was a bit too quick in accepting it! – yankee2905 Nov 3 at 21:08
@JaredPar - that's why this is a great site - so many fringe questions asked that there is always something new to learn about things we feel we already know :-) – SingleShot Nov 3 at 21:10
vote up 1 vote down

There's. Look at Javadoc for java.lang.Class#getGenericInterfaces().

Like this:

public class Test1 {

	interface GenericOne<T> {
	}

	public class Impl implements GenericOne<Long> {
	}

	public static void main(String[] argv) {
		Class c = (Class) ((ParameterizedType) Impl.class.getGenericInterfaces()[0]).getActualTypeArguments()[0];
		System.out.println(c);
	}
}
link|flag
vote up 0 vote down

Depends on what you mean exactly. Just T might be what you want, for example:

public Interface Foo<T extends Colors>{ public T returnType() {...} ...}
link|flag
vote up 0 vote down

One way to do this is to explicitly pass in a Class object with the type. Something like the following:

public class FooImpl<T extends Colors> {
  private Class<T> colorClass;
  public FooImpl(T colorClass) {
    this.colorClass = colorClass;
  }
  public Class<T> getColorClass() {
    return colorClass;
  }
}
link|flag
vote up -2 vote down

[edit] Ok, apparently partially possible. Good explanation of how to do it, (including an improvement upon the method posted by SingleShot): http://www.artima.com/weblogs/viewpost.jsp?thread=208860

link|flag
that should probably read Class<T> getTypeParameter() and Class<Green> getTypeParameter.. – roe Nov 3 at 20:57
vote up 8 vote down

EDIT

Turns out for this case it is possible to get the generic information. Singleshot posted an answer which does just that. His should be the accepted answer. Re-qualifying mine.

In general though, there are many cases where you are unable to get type information you might expect to be there. Java uses a technique called type erasure which removes the types from the generic at compile time. This prevents you from getting information about their actual binding at runtime in many scenarios.

Nice FAQ on the subject:

link|flag
This is wrong. You can call Class.getGenericInterfaces() and obtain type arguments from ParameterizedType – ChssPly76 Nov 3 at 21:00
I agree. See my answer, which is code I actually use in a generic Hibernate DAO I wrote. – SingleShot Nov 3 at 21:02
@SingleShot, @ChssPly76, nice to know this is possible. I updated my answer to essentially point to @SingleShot's answer. – JaredPar Nov 3 at 21:05

Your Answer

Get an OpenID
or

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