Package org.geotools.graph.util
Class MultiMap
- Object
-
- MultiMap
-
- All Implemented Interfaces:
Serializable,Map
public class MultiMap extends Object implements Map, Serializable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)SetentrySet()Objectget(Object key)CollectiongetItems(Object key)booleanisEmpty()SetkeySet()Objectput(Object key, Object value)voidputAll(Map t)voidputItems(Object key, Collection items)Objectremove(Object key)intsize()Collectionvalues()-
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
putItems
public void putItems(Object key, Collection items)
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap
-
values
public Collection values()
-
getItems
public Collection getItems(Object key)
-
-