I don't think the title of the question will be clear, but the idea is simple.
Suppose I have a Map type variable.
Map<K,V> myMap;
but I want to establish a relation between K and V. for example, I'd like to say that this Map relates Sets of some class to objets of that class. Something like:
Map<Set<T>, T> myMap;
but not for a specific type T. I'd like this Map to accept entries like
(Set<String>, String),
(Set<Integer>, Integer)
...
Is there a possible declaration for myMap that allows me to have this behavior? Please let me know if I'm explaining myself wrongly or if I have a previous conceptual error.
Set<Integer>in followed by an emptySet<String>, that an emptySet<Integer>will be unmapped or return aString(/throw aClassCastException)? – Tom Hawtin - tackline Nov 10 '11 at 21:49