| Interface | Description |
|---|---|
| DateTimeIterable |
an iterable over dates in order.
|
| DateTimeIterator | |
| LocalDateIterable |
an iterable over dates in order.
|
| LocalDateIterator |
| Class | Description |
|---|---|
| DateTimeIteratorFactory |
a factory for converting RRULEs and RDATEs into
Iterator<DateTime> and
Iterable<DateTime>. |
| LocalDateIteratorFactory |
a factory for converting RRULEs and RDATEs into
Iterator<LocalDate> and
Iterable<LocalDate>. |
Joda time compatability layer.
RFC 2445 allows mixing of dates, date-times (and periods) within the same
recurrence description. Joda Time makes a clear distinction between dates and
times, so we provide two iterator factories, one for LocalDates and another for DateTimes.
If you need to blur the distinction between
LocalDateIterator and
DateTimeIterator you can
downcast them to Iterator<? extends ReadablePartial>.