How do I retrieve the values of a Hashtable/HashMap in sorted order?
Created May 7, 2012
John Zukowski Basically, you can't directly do this. What you can do is get the Collection of values() back from the map and create a sorted collection, or maintain two maps, one in each direction, and keep the second map sorted by being a TreeMap. Which you use depends on the frequency you must sort the elements.