I have a list of objects of a class that have a LocalDate
attribute
I need to make a Map that has the key being the year and the value another map that the key is the month and the value the list of that object
Like this:
Map<Integer, Map<Month, List<K>>>
Does anyone have any ideas?