Not that this is particularly helpful to you, but you're doing something that's relatively straightforward in C# that's damn near impossible in Java because Java doesn't have "reified generics", i.e., you can't say "typeof(T)" because T isn't there at all at runtime.

Java programmers instead pass around "class" objects and play awful games with Java reflection.

So... be happy you can do this at all, I guess...