friends, I am new to Java-Collection. I want to ask does Collections.sort() method only used for/by collections which are List type. I was unable t
Collections.sort()
List
Yes, the Collections.sort methods are only for lists.
Collections.sort
You can't sort HashSet, but a TreeSet is automatically sorted as you add items, and LinkedHashSet is sorted by insertion order.
HashSet
TreeSet
LinkedHashSet