parse abstract method
Takes a cronString
, a locationName
and an optional startTime
.
It returns an iterator HasNext which delivers TZDateTime
events. If no startTime
is provided TZDateTime.now(getLocation(locationName)
is used.
The locationName
string has to be in the format listed at http://www.iana.org/time-zones.
Implementation
CronIterator<tz.TZDateTime> parse(String cronString, String locationName,
[tz.TZDateTime? startTime]);