Is there a way to sort map entries by value where value is a collection? I want to sort entries by their collections' size. My code so far:
public Map<Object, Collection<Object>> sortByCollectionSize() {
return myMap.entrySet().stream().sorted(Map.Entry.<Object, Collection<Object>>comparingByValue())
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, (e1, e2) -> e1, LinkedHashMap::new));
}