I am trying to define HashMap< ? , String> where ? is a class object from some implementation of a given interface, P.
For example, for interface ISearchEngine, i want ? to possibly be Google.class, Yahoo.class, Bing.class, etc.
How about
HashMap<Class<? extends ISearchEngine>, String>
I think you want
HashMap<? extends ISearchEngine, String>
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
168 times
active