Skip to content
Advertisement

Group map values but keys are same

I have a map like this. Map<long,List<Student>> studentMap

Key is a number 1,2,3,4… Student object is :

JavaScript

What i want to do is to convert it Map<long,List<StudentInfo>> studentInfoMap object and group id, addressNo and code fields.I want key are same for both maps.

I can group the map by using these codes but summingDouble is not working for BigDecimal.Also I cannot convert my studentMap to studentInfoMap.:(

JavaScript

My studentInfo object is :

JavaScript

Advertisement

Answer

For a one-to-one conversion from Student to StudentInfo:

JavaScript

To convert from one Map to the other:

JavaScript

Now your grouping….

From the JavaDoc for java.util.stream.Stream<T> public abstract <R, A> R collect(java.util.stream.Collector<? super T, A, R> collector):

The following will classify Person objects by city:

JavaScript

The following will classify Person objects by state and city, cascading two Collectors together:

JavaScript

Note how the last example produces a Map with another Map as its values.

Now, summingDouble over StudentInfo::getTax produces a BigDecimal, not a Map. Replacing with groupingBy will work to classify Students that have the same amount for getTax:

JavaScript

Edit: Retaining the 1,2,3,4 original keys

To retain the original keys you can iterate or stream the original entrySet, which contains both key and value:

JavaScript

Just as an exercise, if you want a flat map (Map<MyKey,List>) you need a composite key MyKey

As per my comment, if you are looking to have a single flat Map, you could design a composite key, which would need to implement both equals() and hashCode() to contract. For example, this is what Lombok would generate for StudentInfo (yes, its easier to depend on lombok and use @EqualsAndHashCode):

JavaScript

You might then use StudentInfo as the composite key as follows:

JavaScript

This means that you now have a nested map referenced by the composite key. Students that have exactly the same addressNo, code and tax will be part of the List referenced by each such key.

Edit: Retaining original keys

Similarly, if you wanted to retain the original keys, you could either add them into the composite key, or similar as above:

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