Methods
| Modifier and Type |
Method and Description |
boolean |
add(T key,
E value) |
boolean |
addAll(T key,
Collection<E> values) |
static <T,E> ListMap<T,E> |
build(Iterable<E> c,
Function<E,T> f) |
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<T,List<E>>> |
entrySet() |
boolean |
equals(Object o) |
List<E> |
get(Object key) |
List<E> |
getList(T key) |
protected Map<T,List<E>> |
getMap() |
int |
hashCode() |
boolean |
isEmpty() |
Set<T> |
keySet() |
protected List<E> |
newList() |
static <T,E> ListMap<T,E> |
newListMap() |
protected Map<T,List<E>> |
newMap() |
List<E> |
put(T key,
List<E> value) |
void |
putAll(Map<? extends T,? extends List<E>> m) |
List<E> |
remove(Object key) |
boolean |
remove(T key,
E value) |
int |
size() |
String |
toString() |
Collection<List<E>> |
values() |