créer un hashset avec un membre

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