public class Time extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Time.CronExpression
Thanks to Quartz project, https://quartz.dev.java.net
|
| Constructor and Description |
|---|
Time() |
| Modifier and Type | Method and Description |
|---|---|
static long |
cronInterval(String cron)
Computes the number of milliseconds between the next valid date and the one after.
|
static long |
cronInterval(String cron,
Date date)
Compute the number of milliseconds between the next valid date and the one after.
|
static Date |
parseCRONExpression(String cron)
Parses a CRON expression.
|
static int |
parseDuration(String duration)
Parses a duration.
|
public static int parseDuration(String duration)
duration - a quantity of time, such as 3h, 2mn, 7spublic static Date parseCRONExpression(String cron)
cron - the CRON StringDate that satisfies the expressionpublic static long cronInterval(String cron)
cron - the CRON Stringpublic static long cronInterval(String cron, Date date)
cron - the CRON Stringdate - the date to start search