Skip to content
Advertisement

Convert nested map of streams.groupingBy() into list of POJOs

I want to convert a nested map structure created by java streams + groupingBy into a list of POJOs, where each POJO represents one of the groups and also holds all the matching objects of that group.

I have the following code: I use project lombok for convenience here (@Builder, @Data). Please let me know if that is confusing.

My goal is to prevent two points from happening:

  1. Having deeply nested maps and
  2. As a result: Looping over these nested maps via keySets or entrySets to actually do stuff if the entries

Instead, I’d love a clean and flat list of POJOs that represent the grouping and conveniently hold the matching entries for each group.

Find the code on GitHub to run if locally, if you want.

Edit 1: I’ve updated the code again to remove the lastname and add another “Gerrit” object to have two objects with the same grouping. I hope this makes the intent clearer.

Edit 2: I have updated the code again to add a property on Person which is not part of the grouping.

I am looking for an output like this:

JavaScript
JavaScript

Advertisement

Answer

I am not quite sure about the purpose of Grouping object because upon converting the maps to List<Grouping> the list of persons will actually contain duplicate persons.

This can be achieved with plain groupingBy person and converting the Map.Entry to Grouping.

Update
If the “key” part of Grouping has fewer fields than Person (favoriteColor has been added recently to Person), it’s worth to implement another POJO representing the key of Grouping:

JavaScript

Then the instance of GroupingKey may be used in Grouping to avoid duplication.

Assuming that all-args constructor and a mapping constructor are implemented in Grouping

JavaScript

Then implementation could be as follows:

JavaScript

Output (test data changed slightly, key part is excluded):

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement