List of utility methods to do Map Clone
Map | cloneMap(Map Clone the specified map. if (map == null) return null; Map<String, List<String>> cloneMap = new HashMap<String, List<String>>(); for (Entry<String, List<String>> entry : map.entrySet()) { if (entry == null) continue; String key = userProf_vs_Res.get(entry.getKey()); cloneMap.put(key == null ? entry.getKey() : key, cloneStringList(entry.getValue())); ... |