If I have the value "foo", and a HashMap<String> ftw for which ftw.containsValue("foo") returns true, how can I get the corresponding key? Do I have to loop through the hashmap? What is the best way to do that?
If I have the value foo , and a HashMap<String> ftw for which ftw.containsValue(foo)
Share
If you choose to use the Commons Collections library instead of the standard Java Collections framework, you can achieve this with ease.
The
BidiMapinterface in the Collections library is a bi-directional map, allowing you to map a key to a value (like normal maps), and also to map a value to a key, thus allowing you to perform lookups in both directions. Obtaining a key for a value is supported by thegetKey()method.There is a caveat though, bidi maps cannot have multiple values mapped to keys, and hence unless your data set has 1:1 mappings between keys and values, you cannot use bidi maps.
If you want to rely on the Java Collections API, you will have to ensure the 1:1 relationship between keys and values at the time of inserting the value into the map. This is easier said than done.
Once you can ensure that, use the
entrySet()method to obtain the set of entries (mappings) in the Map. Once you have obtained the set whose type isMap.Entry, iterate through the entries, comparing the stored value against the expected, and obtain the corresponding key.Support for bidi maps with generics can be found in Google Guava and the refactored Commons-Collections libraries (the latter is not an Apache project). Thanks to Esko for pointing out the missing generic support in Apache Commons Collections. Using collections with generics makes more maintainable code.
Since version 4.0 the official Apache Commons Collections™ library supports generics.
See the summary page of the "org.apache.commons.collections4.bidimap" package for the list of available implementations of the
BidiMap,OrderedBidiMapandSortedBidiMapinterfaces that now support Java generics.