I have a problem with bounded nested wildcards in Java generics.
Here\'s a common case:
public void doSomething(Set extends Number> set) {}
this will work for you:
public void doSomething(Map> map) {}