Short answer: Impossible.
Slightly longer answer: Once your code is compiled, the type parameters is discarded.
Thus, Java cannot know what you set there.
You could, however, pass the class in question to your object and operate on it:
public class Example {
private final Class clazz;
public Example(Class clazz){
this.clazz = clazz;
}
...
}