I have some data like this:
Map<Integer, String> foo
Now I can get the corresponding String
with foo.get(1)
But is it also possible to get all the Integer
s which have the String
"abc"?
Like this pseudo code: Integer[] someMore = foo.getKeys("abc")