Here you can find the source of deepCopyMap(Map map)
private static Map deepCopyMap(Map map)
//package com.java2s; //License from project: Apache License import java.util.HashMap; import java.util.Map; public class Main { private static Map deepCopyMap(Map map) { return new HashMap(map); }//from w ww . jav a2 s . c o m }