public class MultiMap<K extends Comparable<? super K>,V> extends Object implements Map<K,V>
| Modifier and Type | Class and Description |
|---|---|
class |
MultiMap.MultiMapEntry |
class |
MultiMap.MultiMapEntrySet |
| Constructor and Description |
|---|
MultiMap() |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
V |
get(Object key) |
boolean |
isEmpty() |
Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> src) |
V |
remove(Object key) |
int |
size() |
Collection<V> |
values() |
public boolean containsKey(Object key)
containsKey in interface Map<K extends Comparable<? super K>,V>public boolean containsValue(Object value)
containsValue in interface Map<K extends Comparable<? super K>,V>public boolean isEmpty()
public Collection<V> values()
Copyright © 2014. All rights reserved.