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 Lamma it looks like this in Java:
for (Date d: Dates.from(2014, 6, 29).to(2014, 7, 1).build()) { System.out.println(d); }
and the output is:
Date(2014,6,29) Date(2014,6,30) Date(2014,7,1)