This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @author [email protected] | |
| * @date 29/08/2024 | |
| * @description A map where the items are lists of items and you can provide a function for how values map to keys. | |
| * Oh, if we had generics.... | |
| */ | |
| public class MultiMap { | |
| private Map<Object, List<Object>> theMap; | |
| private Type listType; |