Wondering how can I check if a date/time range satisfies a cron expression in Java. For example, if I say I have time range from
Monday 12:00 AM to 7:00 AM
and mention cron 0 0 6 * * MON
, the comparison should give me true.
Wondering how can I check if a date/time range satisfies a cron expression in Java. For example, if I say I have time range from
Monday 12:00 AM to 7:00 AM
and mention cron 0 0 6 * * MON
, the comparison should give me true.