Given the a class with the following structure. I am trying to determine the type of the parameter T assigned by the caller of the generic method.
public cl
You can't do that. What you could do is make the method signature like this:
public boolean isSupportable(Class> type)
Then you can use the given class to check the type.