List of utility methods to do Properties Merge
void | mergePropertiesIntoMap(Properties props, Map map) Merge the given Properties instance into the given Map, copying all properties (key-value pairs) over. if (map == null) { throw new IllegalArgumentException("Map must not be null"); if (props != null) { for (Enumeration en = props.propertyNames(); en .hasMoreElements();) { String key = (String) en.nextElement(); Object value = props.getProperty(key); ... |
void | mergePropertiesIntoMap(Properties props, Map Merge the given Properties instance into the given Map, copying all properties (key-value pairs) over. if (map == null) { throw new IllegalArgumentException("Map must not be null"); if (props != null) { for (Enumeration<?> en = props.propertyNames(); en .hasMoreElements();) { String key = (String) en.nextElement(); Object value = props.getProperty(key); ... |