I want a Dictionary (HashTable, Map, ...) that has one key and several values.
I.e. I want something like
HashTable<Key, [value1, value2]>
How do I get this?
|
I want a Dictionary (HashTable, Map, ...) that has one key and several values. I.e. I want something like
How do I get this? |
||||
|
|
|
The easiest way I think:
If you would rather just have a tuple (pair, 3, or ...) you can create a
And then use a
|
|||||||
|
|
Make a new (non-public) class for your values or use multiple maps (propably slower). |
|||
|
|
|
Google's Guava provides a multimap that does this. Javadoc |
|||
|
|
There's no such thing as tuples in Java Language, so you can use some of the proposals:
You also can make a fairly general object: Pair.
|
|||
|
|