I have a Map and need to sort the Key based on multiple conditions. How to achieve this using Java 8 Comparator and Stream?
class MyObject {
private Set<Objects> setOfStuff;
public Set<Objects> getSetOfStuff(){
return listOfStuff;
}
public int countStuff(){
return listOfStuff.size();
}
}
Map<String, List<MyObject> needsSorting = new HashMap<>();
needsSorting.put("Monday", createSetOfObj());
needsSorting.put("Wednesday", createSetOfObj());
needsSorting.put("Thursday", createSetOfObj());
Set<MyObject> createSetOfObj() {
...
return list;
}
Map<String, Set<MyObject>> sortedResult = new LinkedHashMap<>();
- Sort on Key, alphabetically
- Sort key based on size of
List<MyObject>
- Sort Key based on size of the largest
MyObject countStuff();
if not, it there a better approach?
Update 1:
I think I have 1 & 2 done. Just not sure about how to do 3.
Comparator<Entry<String, List<MyObject>>> comparator = Comparator.comparing(Map.Entry<String, List<MyObject>>::getKey)
.thenComparingInt(e -> e.getValue().size());
Update 2:
This seems to be producing the comparison I needed. I added a countStuff for easy size access.
Comparator<Entry<String, Set<MyObject>>> comparator = Comparator.comparing(Map.Entry<String, Set<MyObject>>::getKey)
.thenComparingInt(e -> e.getValue().size())
.thenComparingInt(e -> e.getValue().stream().map(MyObject::countStuff).max(Integer::max).get());
The HashMap is not ideal for sorting, you could use a
TreeMap
instead, and pass your comparator to the constructor:Edit : the comparator only works for keys not values