vote up 5 vote down star

Hi,

I need a kind of map which is accessible in two directions, so with a key-key structure instead of key-value. Does this exist in Java? If not, what is the best way to create it?

So example:

mySpecialHashMap.put("key1", "key2");

mySpecialMap.getL2R("key1") returns "key2";
mySpecialMap.getR2L("key2") returns "key1";
flag

65% accept rate
3  
Dupe: stackoverflow.com/questions/1670038/… – finnw Nov 5 at 17:50

4 Answers

vote up 18 vote down check

So you want a bidirectional map. You can use Apache Commons Collections BidiMap or Google Collections BiMap for this.

link|flag
vote up 3 vote down

You might want to look at BiMap from the Google Collections library.

An example where a HashBiMap is used as the "mySpecialHashMap":

BiMap<String, String> myBiMap = HashBiMap.create();
myBiMap.put("key1", "key2");

myBiMap.get("key1"); // returns "key2"
myBiMap.inverse().get("key2"); // returns "key1"
link|flag
vote up 2 vote down

Yes, there is BiMap from Google Collections.

link|flag
vote up 1 vote down

Or for reversible enums see this Stackoverflow question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.