aspose file tools
The moose likes Beginning Java and the fly likes How to sort a Map with Enums Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "How to sort a Map with Enums" Watch "How to sort a Map with Enums" New topic
Author

How to sort a Map with Enums

vuthlarhi donald
Ranch Hand

Joined: Jul 31, 2006
Posts: 76
Iwant to sort the map, so that when I print the result's ...everything must be sorted with aphabetical order, with the ordinal values as well. so I can't use a TreeMap, because that will only sort the values of the enums/ordinal values...I am running out of ideas..help.



Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Use a TreeMap and provide a Comparator<Titles> or perhaps even a Comparator<Enum><?>> to the constructor.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How to sort a Map with Enums
 
Similar Threads
html:options - having difficulty preselecting item
XML Schema design help
Sorting Maps
enum in Tiger
Enums in a map