Package org.apache.solr.util
Class MapListener<K,V>
- java.lang.Object
-
- org.apache.solr.util.MapListener<K,V>
-
- All Implemented Interfaces:
Map<K,V>
public class MapListener<K,V> extends Object implements Map<K,V>
Wraps another map, keeping track of each key that was seen viaget(Object)orremove(Object).
-
-
Constructor Summary
Constructors Constructor Description MapListener(Map<K,V> target)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<K,V>>entrySet()Vget(Object key)Set<K>getSeenKeys()booleanisEmpty()Set<K>keySet()Vput(K key, V value)voidputAll(Map<? extends K,? extends V> m)Vremove(Object key)intsize()Collection<V>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
-
-