static Map mergeMaps(Map... maps) { Map map = null; for (Map m : maps) { if (map == null) map = similarEmptyMap(m); map.putAll(m); } ret map; }