Well, Here's an approach... I'm not saying this is the best (or even a good) approach, I'm just saying you might be able to adapt it to your needs.
package forums;
import java.util.List;
import java.util.Set;
import java.lang.reflect.*;
class Class1<O,P,Q> {}
class Class2<R,S> extends Class1<R, String, S> {}
class Class3<U> extends Class2<List,U> {}
class Class4<W> extends Class2<W,Set> {}
public class GenericTypeHeirarchy
{
public static void main(String[] args) {
try {
PrintGenericAncestorTypes(Class4.class, " ");
} catch (Exception e) {
e.printStackTrace();
}
}
@SuppressWarnings("unchecked")
public static void PrintGenericAncestorTypes(Class clazz, String pad) {
Type supaType = clazz.getGenericSuperclass();
ParameterizedType paramSupaType = null;
if (supaType instanceof ParameterizedType)
paramSupaType = (ParameterizedType) supaType;
if (paramSupaType == null)
return; // INVALID REQUEST! Parent isn't a generic type.
Type[] supasArgTypes = paramSupaType.getActualTypeArguments(); //actually returns TypeVariableImpl[]
for ( Type t : supasArgTypes ) {
// Type subinterfaces: GenericArrayType, ParameterizedType, TypeVariable<D>, WildcardType
if (t instanceof TypeVariable) {
System.out.println( pad + clazz.getName() + ": <" + t + ">");
PrintGenericAncestorTypes(clazz.getSuperclass(), pad + " "); // <<<< RECURSION >>>>
} else {
System.out.println( pad + clazz.getName() + ": " + t);
}
}
}
}
EDIT:
This probably still isn't what you're after... which I think would be the Class (or the class name) for each generic-arguement-type... but it's as far as I can get. I don't know how to get a Class for a Type... the Type interface is empty, so it'd have to be cast to something to get a class (or class-name) from... and read-arg-types (like java.lang.String) wheren't any of the known-subinterfaces-of-Type (GenericArrayType, ParameterizedType, TypeVariable, or WildcardType). I presumed that a TypeVariable<D> is an instanceOf TypeVariable.
So here's my improved version, but I'm stumped on where to go from here.
package forums;
import java.util.List;
import java.util.Set;
import java.lang.reflect.*;
class Class1<O,P,Q> {}
class Class2<R,S> extends Class1<R, String, S> {}
class Class3<U> extends Class2<List,U> {}
class Class4<W> extends Class2<W,Set> {}
public class GenericTypeHeirarchy
{
public static void main(String[] args) {
try {
PrintGenericTypeTree(Class4.class);
System.out.println("--------------------------\n");
PrintGenericTypeTree(Class3.class);
} catch (Exception e) {
e.printStackTrace();
}
}
//@SuppressWarnings("unchecked")
public static void PrintGenericTypeTree(Class clazz) {
if (clazz == null || clazz == java.lang.Object.class)
return;
//
// class Class4<W> extends
//
System.out.print( "class " + clazz.getName() );
TypeVariable[] argTypes = clazz.getTypeParameters();
if (argTypes.length == 0)
return;
System.out.print( "<" );
boolean first = true;
for ( TypeVariable t : argTypes ) {
System.out.print( (first?"":", ") + t.getName() );
first = false;
}
System.out.print("> extends ");
//
// Class2<W,Set>
//
Class supaClass = clazz.getSuperclass();
System.out.print(supaClass.getName());
Type genericSupaType = clazz.getGenericSuperclass();
ParameterizedType paramSupaType = null;
if (genericSupaType instanceof ParameterizedType)
paramSupaType = (ParameterizedType) genericSupaType;
if (paramSupaType == null) { // Parent isn't a generic type.
System.out.println();
return;
}
Type[] supasArgTypes = paramSupaType.getActualTypeArguments(); //actually returns TypeVariableImpl[]
first = true;
System.out.print( "<" );
for ( Type t : supasArgTypes ) {
System.out.print( (first?"":", ") + t );
first = false;
}
System.out.println(">");
PrintGenericTypeTree(supaClass);
}
}
... and here's the output ...
C:\Java\home\src\forums>"C:\Program Files\Java\jdk1.6.0_16\bin\java.exe" -Xms4m -Xmx256m -enableassertions -cp c:\java\home\src;C:\Java\home\classes; forums.GenericTypeHeirarchy
class forums.Class4<W> extends forums.Class2<W, interface java.util.Set>
class forums.Class2<R, S> extends forums.Class1<R, class java.lang.String, S>
class forums.Class1<O, P, Q> extends java.lang.Object
--------------------------
class forums.Class3<U> extends forums.Class2<interface java.util.List, U>
class forums.Class2<R, S> extends forums.Class1<R, class java.lang.String, S>
class forums.Class1<O, P, Q> extends java.lang.Object