How to sort Map Entries by value size where map value is a Collection?

janlan :

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));
}
Naman :

You can get it working with Comparator.comparingInt as:

return myMap.entrySet()
            .stream()
            .sorted(Comparator.comparingInt(e -> e.getValue().size()))
            .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, (e1, e2) -> e1, LinkedHashMap::new));

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=94730&siteId=1