I\'m wondering if it\'s possible to sort a LinkedHashSet. I\'ve tried the statement
Collections.sort((List paragraph);
Howeve
Collections.sort does not work on Sets, only on Lists. If you need to sort the data that is already in a Set, you might want to first add them into a List.
Set
List