public abstract class AbstractMultiValueMap<K,V> extends Object implements MultiValueMap<K,V>, Serializable
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
boolean |
containsValue(Object key,
Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
boolean |
equals(Object o) |
V |
get(Object key) |
List<V> |
getList(Object key) |
int |
hashCode() |
boolean |
isEmpty() |
Set<K> |
keySet() |
Set<Map.Entry<K,List<V>>> |
multiEntrySet() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> m) |
V |
remove(Object key) |
int |
size() |
String |
toString() |
Collection<V> |
values() |
Collection<List<V>> |
valuesList() |
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllpublic boolean containsKey(Object key)
containsKey in interface Map<K,V>public boolean containsValue(Object value)
containsValue in interface Map<K,V>public boolean containsValue(Object key, Object value)
containsValue in interface MultiValueMap<K,V>public Collection<List<V>> valuesList()
valuesList in interface MultiValueMap<K,V>public Set<Map.Entry<K,List<V>>> multiEntrySet()
multiEntrySet in interface MultiValueMap<K,V>public boolean equals(Object o)
public int hashCode()
Copyright © 2016 jetbrick. All rights reserved.