summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/data/Multimap.java
blob: 3a9ca44374b8bbd144fa10e09df343dd03d47637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package bjc.data;

/**
 * A map with support for multiple values per key.
 *
 * @param <KeyType>
 * 	The type of the keys for the map.
 * @param <ValueType>
 * 	The type of the values for the map.
 *
 * @author Ben Culkin
 */
public class Multimap<KeyType, ValueType> {

}