I have a
Multimap<String, Integer> map = ...
where I can do map.get("somekey") to retrieve all the matching Integers.
Now I would like to find the keys that have a given Integer, i.e. something like a
Collection<String> keys = map.getByValue(Integer.of(4))
which returns all keys in the Multimap where the given Integer is stored as value.
Is there an easy way to do this in Google Guava?