Collection Factory Methods:
*SetE Factory Method Examples
Set<Integer> immutableEmptySet = Set.of();
Set<Integer>.
Set<Integer> immutableSet = Set.of(1, 2, 3, 4, 5);
Set<Integer> with five initial elements.
Set<Integer> mutableSet = new HashSet<>(immutableSet);
Set<Integer> from an immutable Set<Integer>.