Java Tutorial Java Set
Custom
- Implement the Set interface more compactly than java.util.HashSet in Java
- Implement the set interface more tightly in memory and more efficiently than Java's java.util.HashSet in Java
- Create a Set backed by a ConcurrentHashMap instance in Java
- Create a Set implementation that use == instead of equals() in Java
- Create a thin wrapper around a List transforming it into a modifiable Set in Java
- Create an IdentitySet that uses reference-equality instead of object-equality in Java
- Implement two interface List and Set in Java
- Create an Integer value set in Java
- Create a read-only Set in Java
- Create a Set That Retains Order-of-Insertion in Java
- Create a sorted set whose items are in a sorted order in Java
Convert
- Convert Set into List in Java
- Convert Set into array in Java
- Convert array to Set in Java
- Convert List to Set in Java
Basic
Set Operation
- Check if one set is Subset of another in Java
- Check if one set is superSet of another in Java
- Different two set in Java
- Intersect two set in Java
- Symmetric Different two set in Java
- Union two set in Java