Is there a Collector that collects to an order-preserving Set?

JavaJava 8Collectors

Java Problem Overview


Collectors.toSet() does not preserve order. I could use Lists instead, but I want to indicate that the resulting collection does not allow element duplication, which is exactly what Set interface is for.

Java Solutions


Solution 1 - Java

You can use toCollection and provide the concrete instance of the set you want. For example if you want to keep insertion order:

Set<MyClass> set = myStream.collect(Collectors.toCollection(LinkedHashSet::new));

For example:

public class Test {    
    public static final void main(String[] args) {
        List<String> list = Arrays.asList("b", "c", "a");

        Set<String> linkedSet = 
            list.stream().collect(Collectors.toCollection(LinkedHashSet::new));

        Set<String> collectorToSet = 
            list.stream().collect(Collectors.toSet());

        System.out.println(linkedSet); //[b, c, a]
        System.out.println(collectorToSet); //[a, b, c]
    }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiongvlasovView Question on Stackoverflow
Solution 1 - JavaAlexis C.View Answer on Stackoverflow