Interface | Description |
---|---|
MultiMap<K,V> |
An interface for a multimap roughly conforming to Java's map specifications
|
Class | Description |
---|---|
ListMultiMap<K,V> |
A multimap back by a list, allowing duplicate values under the same key
|
Pair<T1,T2> |
A simple Pair implementation
|
SetMultiMap<K,V> |
A multimap back by a set, disallowing duplicate values under the same key
|
UnmodifiablePair<T1,T2> |
An unmodifiable Pair
|