summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/data/Multimap.java
blob: 0e858b72ec559ae75f91892fe7357331e1597faf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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> {
	// TODO either implement this, or find if there is an implementation I've
	// written elsewhere
}