Package org.openstreetmap.josm.data.osm
Class Storage.FMap<K>
- java.lang.Object
-
- org.openstreetmap.josm.data.osm.Storage.FMap<K>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object o)
boolean
containsValue(Object value)
Set<Map.Entry<K,T>>
entrySet()
T
get(Object o)
boolean
isEmpty()
Set<K>
keySet()
T
put(K key, T value)
void
putAll(Map<? extends K,? extends T> m)
T
remove(Object o)
int
size()
Collection<T>
values()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(Object o)
- Specified by:
containsKey
in interfaceMap<K,T>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<K,T>
-
-