Here you can find the source of createMap()
public static Map createMap()
//package com.java2s; //License from project: Open Source License import java.util.Collections; import java.util.Map; import java.util.HashMap; public class Main { public static Map createMap() { return createMap(Collections.EMPTY_MAP); }/* ww w . j a v a 2 s .c om*/ @SuppressWarnings("unchecked") public static Map createMap(Map m) { return new HashMap(m); } }