I want to have a Class object, but I want to force whatever class it represents to extend class A and implement interface B.
I can do:
Class<? extends ClassA>
Or:
Class<? extends InterfaceB>
but I can't do both. Is there a way to do this?
|
I want to have a Class object, but I want to force whatever class it represents to extend class A and implement interface B. I can do:
Or:
but I can't do both. Is there a way to do this? |
||||
|
|
|
Actually, you can do what you want. If you want to provide multiple interfaces or a class plus interfaces, you have to have your wildcard look something like this:
See the Generics Tutorial at sun.com, specifically the Bounded Type Parameters section, at the bottom of the page. You can actually list more than one interface if you wish, using This can get arbitrarily complicated. To demonstrate, see the JavaDoc declaration of
why so complicated? As said in the Java Generics FAQ: To preserve binary compatibility. It looks like this doesn't work for variable declaration, but it does work when putting a generic boundary on a class. Thus, to do what you want, you may have to jump through a few hoops. But you can do it. You can do something like this, putting a generic boundary on your class and then:
to get |
|||||||||||
|