Java membuat set dengan nilai

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