I know about SortedSet, but in my case I need something that implements List, and not Set. So is there an implementation out there, in the API or e
List
Set
Why not encapsulate a set with a list, sort like:
new ArrayList( new LinkedHashSet() )
This leaves the other implementation for someone who is a real master of Collections ;-)