Erstellen Sie ein Hashset mit einem Mitglied

Set<String> set = new HashSet<>(Arrays.asList("a", "b", "c"));
Tytrox