List of utility methods to do HashMap Copy
HashMap | copyHashMap( HashMap copy Hash Map Set<Entry<String, T>> entries = hashMap.entrySet(); HashMap<String, T> newHashMap = new HashMap<String, T>(); for (Entry<String, T> entry : entries) { newHashMap.put(entry.getKey(), entry.getValue()); return newHashMap; |