Junilu Lacar wrote:It seems like the problem is because you're missing the year portion of the date so parsing will result in an incomplete date value, which apparently the LocalDate class will not allow. You may have to write some specialized classes / enums that will add the year in for you by default.
I wondered if it might be that, and thought about
testing it to see by grabbing the system date and appending it somehow.
I really appreciate all the varied responses because I wanted to get a variety of ideas on what might be the 'best' approach since I'm still figuring out the new stuff from
Java 8 and when it's worthwhile to use it over my normal habits.