Bidirectional Map

Java doesn’t have a bidirectional map in its standard library.

Use for example BiMap<K, V> from Google Guava .

Leave a Comment