Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

6 Answers

up vote 6 down vote accepted

The easiest way I think:

Map<Key, List<Value>>

If you would rather just have a tuple (pair, 3, or ...) you can create a Pair class.

class Pair<E,F, ...> {

    public E one;
    public F two;
    ...

}

And then use a Map like so:

Map<Key, Pair<Value, Value>>
share|improve this answer
okay, I thought there was another solution. Since I'm new to Java I thought there might be a data structure that supports this. – ptikobj Dec 15 '10 at 15:25
@pitik, I don't believe there is a native data structure that supports this. I have never used one. – jjnguy Dec 15 '10 at 15:26
I would recommend creating a class, using generic types inside of generic types causes some problems. – Michael Shopsin Dec 15 '10 at 15:32

How about HashTable<Key, List<Value>>?

share|improve this answer

Just store an array as the value with defined length?

share|improve this answer

Make a new (non-public) class for your values or use multiple maps (propably slower).

share|improve this answer

Google's Guava provides a multimap that does this. Javadoc

share|improve this answer
thanks, handier than writing your own class. and exactly what i was looking for. – ptikobj Dec 16 '10 at 13:24

There's no such thing as tuples in Java Language, so you can use some of the proposals:

  • store an array
  • store a List, Set
  • store a custom object holding the two values

You also can make a fairly general object: Pair.

public Pair<A,B> {
  public Pair(A a, B b) {
   this.a = a;
   this.b = b;
  }
  public A a() { return a; }
  public B b() { return b; }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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