static Map mapGetOrCreateHashMap(Map> map, A key) { Map b = map.get(key); if (b == null) map.put(key, b = new HashMap); ret b; }