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.
With java 8
public Stream getDaysBetween(LocalDate startDate, LocalDate endDate) { return IntStream.range(0, (int) DAYS.between(startDate, endDate)).mapToObj(startDate::plusDays); }