Package org.mockserver.collections
Class CircularMultiMap<K,V>
- java.lang.Object
-
- org.mockserver.collections.CircularMultiMap<K,V>
-
-
Constructor Summary
Constructors Constructor Description CircularMultiMap(int maxNumberOfKeys, int maxNumberOfValuesPerKey)
-
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)List<V>getAll(Object key)List<K>getKeyListForValues()booleanisEmpty()Set<K>keySet()Vput(K key, V value)voidputAll(Map<? extends K,? extends V> map)Vremove(Object key)List<V>removeAll(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
-
-