In Quartz, we can tell if a date satisfies a cron pattern by calling CronExpression.isSatisfiedBy(date).
May I know how to do the same in cron4j?
Thank you!
I think there is a
static boolean validate(java.lang.String schedulingPattern)
on the SchedulingPattern class.
The method is SchedulingPattern.match(millis)