Java Map Copy deepCopyMap(Map map)

Here you can find the source of deepCopyMap(Map map)

Description

deep Copy Map

License

Apache License

Declaration

private static Map deepCopyMap(Map map) 

Method Source Code

//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
}

Related

  1. copyValue(Map source, Map target, K key)
  2. copyValueIfExist(Map source, K sourceKey, Map target, K targetKey)
  3. copyValueIfExist(Map source, Map target, K key)
  4. deepCopy(Map map)
  5. deepCopy(Map> context)