Package org.geotools.util
Class KVP
Object
AbstractMap<K,V>
HashMap<K,V>
- All Implemented Interfaces:
Serializable,Cloneable,Map<String,Object>
A linked HashMap set up for easy construction.
Example: KVP map = new KVP("foo",1,"bar,2);
- Author:
- jody
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class LinkedHashMap
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, valuesMethods inherited from class HashMap
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, sizeMethods inherited from class AbstractMap
equals, hashCode, toStringMethods inherited from interface Map
compute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
-
Constructor Details
-
KVP
A linked HashMap set up for easy construction.Example:
KVP map = new KVP("foo",1,"bar,2);
-
-
Method Details
-
add
An additive version of put; will add additional values resulting in a list.
-