If I have a Period object defined like this:
Period.between(LocalDate.of(2015,8,1), LocalDate.of(2015,9,2))
how to iterate over all days starting from first day until the last one? I need a loop that has an object LocalDate
referring to the current date to process it.