i have rrule : FREQ=DAILY;DTSTART=20140305T220000Z;INTERVAL=1;WKST=SU;COUNT=20
and convert it to recurncerule using ...
RecurrenceRuleMarshaller m = new RecurrenceRuleMarshaller();
RecurrenceRule rrule = m.parseText("FREQ=DAILY;DTSTART=20140305T220000Z;INTERVAL=1;WKST=SU;COUNT=20",
parameters).getValue();
.. is there way to extract all recurence dates from this rule ????
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i have rrule : FREQ=DAILY;DTSTART=20140305T220000Z;INTERVAL=1;WKST=SU;COUNT=20
and convert it to recurncerule using ...
RecurrenceRuleMarshaller m = new RecurrenceRuleMarshaller();
RecurrenceRule rrule = m.parseText("FREQ=DAILY;DTSTART=20140305T220000Z;INTERVAL=1;WKST=SU;COUNT=20",
parameters).getValue();
.. is there way to extract all recurence dates from this rule ????
biweekly can only parse the components out of an RRULE value. It cannot compute the individual dates that are effected by the rule.
We use https://code.google.com/p/google-rfc-2445/ library to evaluate the recurrence patterns.