I want a list of dates between start date and end date.
The result should be a list of all dates including the start and end date.
java9 features you can calculate like this
public List getDatesBetween ( LocalDate startDate, LocalDate endDate) { return startDate.datesUntil(endDate) .collect(Collectors.toList()); } ``