Last updated: Apr 26, 2022

Set

Set is a collection that cannot contain duplicate elements. It models the mathematical set abstraction. Set interface contains only methods inherited from Collection and adds the restriction that duplicate elements are prohibited. Let’s learn more about the java set.
AbstractSet
This article deeply explains AbstractSet in Java and various methods with examples.
EnumSet EASY
In this article, we will learn about the Java EnumSet class and its methods with the help of examples.
TreeSet EASY
Explore Java TreeSet, its constructors, methods, and how it maintains sorted order. Learn with examples for efficient set operations.
SortedSet in Java with Examples and Methods EASY
Java SortedSet explained with examples. Learn how SortedSet maintains elements in ascending order, supports range views, comparisons, and subset operations.
LinkedHashSet in Java EASY
Learn about LinkedHashSet in Java, its insertion order advantage over HashSet, use cases, syntax, and how it maintains predictable iteration.
NavigableSet
In this blog, we will learn about NavigableSet and its methods.
ConcurrentSkipListSet
In this blog, we will be discussing ConcurrentSkipListSet, which is a Java Collections Framework. We will discuss constructors and various methods of ConcurrentSkipListSet.
Author Anjali
0 upvotes
CopyOnWriteArraySet
In this blog, we will be discussing CopyOnWriteArraySet, which is a Java Collections Framework. We will discuss constructors, methods, and iterations of CopyOnWriteArraySet.
Author Anjali
0 upvotes