Java.util.Map in the collection collection of value that is merged by the key value.

Source: Internet
Author: User

A resultmap that combines the contents of multiple maps with Java implementation

The code is roughly as follows

/** * @author shalf */public class Maputil {/*** Merge the Partmap data into the resultmap.* @param resultmap* @param partmap*/public static <t, F, K extends collection<f>> void Merge2resultmap (map<t, k> resultmap, Map<t, k> Partmap) {For (Entry<t, k> entry:partMap.entrySet ()) {T key = Entry.getkey ();if (Resultmap.containskey (key)) {Resultmap.get (Key). AddAll (Entry.getvalue ());} else {Resultmap.putall (PARTMAP);}}}}

Mainly involves the use of multiple generics, this tool class can be implemented to the PARTMAP data in the form of key to merge into the Resultmap collection
The collection.

Java.util.Map in the collection collection of value that is merged by the key value.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.