Package org.dmfs.rfc5545.iterable
Interface InstanceIterator
- All Known Implementing Classes:
Composite,CountLimitedRecurrenceRuleIterator,EffectiveInstancesIterator,EmptyIterator
Deprecated.
-
Method Summary
Modifier and TypeMethodDescriptionvoidfastForward(long until) Deprecated.Skip all instances tilluntil.booleanhasNext()Deprecated.Returnstrueif there is at least one more instance to iterate andfalseotherwise.longnext()Deprecated.Get the next instance (in milliseconds since the epoch) of this set.
-
Method Details
-
hasNext
boolean hasNext()Deprecated.Returnstrueif there is at least one more instance to iterate andfalseotherwise. -
next
long next()Deprecated.Get the next instance (in milliseconds since the epoch) of this set. Do not call this ifhasNext()returnsfalse. -
fastForward
void fastForward(long until) Deprecated.Skip all instances tilluntil. Ifuntilis an instance itself it will be the next iterated instance. If the rule doesn't recur till that date the next call tohasNext()will returnfalse.
-
InstanceIterator