Any implementation of Ordered Set in Java?
Take a look at LinkedHashSet class From Java doc: Hash table and linked list implementation of the Set interface, with predictable iteration order. This implementation differs from HashSet in that it maintains a doubly-linked list running through all of its entries. This linked list defines the iteration ordering, which is the order in which elements were inserted into the … Read more