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

In Java, Is there an object that acts like a Map for storing and accessing key/value pairs, but can return an ordered list of keys and an ordered list of values, such that the key and value lists are in the same order?

So as explanation-by-code, I'm looking for something that behaves like my fictitious OrderedMap:

OrderedMap om = new OrderedMap();
om.put(0, "Zero");
om.put(7, "Seven");

Object o = om.get(7); // o is "Seven"
List keys = om.getKeys();
List values = om.getValues();

for(int i = 0; i < keys.size(); i++)
{
    Object key = keys.get(i);
    Object value = values.get(i);
    Assert(om.get(key) == value);
}
share|improve this question
2  
If all you're wanting to do is iterating through both at the same time, then Map.entrySet() will let you do that on any map. The LinkedHashMap has a well defined order, but for any Map the entry set reflects the key/value pairs. – Pete Kirkham Mar 19 '09 at 18:24
1  
This code is not a good example as any Map implementation will behave as your sample code. sorted, ordered or not. – Peter Lawrey Mar 19 '09 at 20:42
Peter Lawrey: Could you expand upon that? The Map interface returns keys and values as a Set and Collection, respectively. Order is not guaranteed in either of these, so it doesn't seem sensible to say that every Map implementation will behave as in my example code. – Whatsit Mar 20 '09 at 15:27
1  
In the Sun JDK implementation, the sets returned by getKeys and getValues() sets are backed by the entrySet() in the map, so will have the same iteration order, which is what your sample tests. – Pete Kirkham Mar 20 '09 at 17:34
1  
This should be named Java Sorted Map, as Ordered Map is something different - see LinkedHashMap. – Ondra Žižka Jan 16 '10 at 10:18
show 1 more comment

6 Answers

up vote 94 down vote accepted

The SortedMap interface (with the implementation TreeMap) should be your friend.

The interface has the methods:

  • keySet() which returns a set of the keys in ascending order
  • values() which returns a collection of all values in the ascending order of the corresponding keys

So this interface fulfills exactly your requirements. However, the keys must have a meaningful order. Otherwise you can used the LinkedHashMap where the order is determined by the insertion order.

share|improve this answer

Is there an object that acts like a Map for storing and accessing key/value pairs, but can return an ordered list of keys and an ordered list of values, such that the key and value lists are in the same order?

You're looking for java.util.LinkedHashMap. You'll get a list of Map.Entry<K,V> pairs, which always get iterated in the same order. That order is the same as the order by which you put the items in. Alternatively, use the java.util.SortedMap, where the keys must either have a natural ordering or have it specified by a Comparator.

share|improve this answer

I think the closest collection you'll get from the framework is the SortedMap

share|improve this answer
1  
I'd love to know about the down vote ... – bruno conde Mar 19 '09 at 18:28

I think the SortedMap interface enforces what you ask for and TreeMap implements that.

http://java.sun.com/j2se/1.5.0/docs/api/java/util/SortedMap.html http://java.sun.com/j2se/1.5.0/docs/api/java/util/TreeMap.html

share|improve this answer

SortedMap

share|improve this answer

Since Java 6 there is also non-blocking thread-safe alternative to TreeMap. See ConcurrentSkipListMap.

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.