public abstract class MultiMap<K,V,C extends Collection<V>> extends Object
Modifier | Constructor and Description |
---|---|
protected |
MultiMap(boolean isSorted) |
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(K k) |
protected abstract C |
createValue() |
Set<Map.Entry<K,C>> |
entrySet() |
C |
get(K key) |
Set<Map.Entry<K,C>> |
getEntrySet()
Deprecated.
|
List<K> |
getKeys()
Deprecated.
|
int |
getSize()
Deprecated.
|
Collection<C> |
getValues()
Deprecated.
|
boolean |
isEmpty() |
Set<K> |
keySet() |
boolean |
put(K key,
V method) |
boolean |
putAll(K k,
Collection<? extends V> values) |
C |
remove(K key)
Deprecated.
|
boolean |
remove(K key,
V value) |
C |
removeAll(K key) |
int |
size() |
String |
toString() |
Collection<C> |
values() |
protected final Map<K,C extends Collection<V>> m_objects
protected abstract C createValue()
@Deprecated public List<K> getKeys()
public boolean containsKey(K k)
public boolean isEmpty()
@Deprecated public int getSize()
public int size()
@Deprecated public C remove(K key)
@Deprecated public Set<Map.Entry<K,C>> getEntrySet()
@Deprecated public Collection<C> getValues()
public Collection<C> values()
public boolean putAll(K k, Collection<? extends V> values)
Copyright © 2018. All rights reserved.