List of utility methods to do Map Put
void | putRowMap(Map put Row Map map.put("field" + map.size(), value);
|
void | putSafelyMap(Map put Safely Map putSafelyMap(pathFeaturesMap, featureDescriptor, pathId, featureValue, HashMap.class);
|
void | putShort(Map Utility method that puts the named short value to the given map. properties.put(name, new Short(value));
|
void | putToListMap(Map mapOfLists, Object key, Object val) put To List Map List list = (List<?>) mapOfLists.get(key); if (list == null) { list = new ArrayList<>(); mapOfLists.put(key, list); list.add(val); |
void | putToMapIfNotNull(Map put To Map If Not Null if (value != null) {
map.put(key, value);
|
void | putToMapMap(Map Puts a value into a map of maps. Map<K2, V> map2 = map1.get(key1); if (map2 == null) { map2 = new HashMap<>(); map1.put(key1, map2); map2.put(key2, value); |
void | putUnique(Map put Unique synchronized (map) { while (map.get(key) != null) { key++; map.put(key, v); |