What is LinkedHashSet?
Umasankar Khatua
A set is a collection of elements without any duplicates. The Set and SortedSet interfaces describe the properties of sets, and the HashSet, LinkedHashSet, and TreeSet classes implement these interfaces. This tip examines these classes, and illustrates where each might be appropriate for use in your Java applications.
Set
SortedSet
HashSet
LinkedHashSet
TreeSet