Java Set retain order? - Stack Overflow
Here is a quick summary of the order characteristics of the standard Set implementations available in Java: keep the insertion order: LinkedHashSet and CopyOnWriteArraySet (thread-safe) keep the items sorted within the set: TreeSet, EnumSet (specific to e...