java.lang.Object
io.github.projectunified.cronutils.model.field.expression.FieldExpression
io.github.projectunified.cronutils.model.field.expression.Every
All Implemented Interfaces:
Serializable

public class Every extends FieldExpression
Represents every x time on a cron field. Usage examples: - To represent a scheduling every 3 months on a specific time (the standard 0 0 0 */3 *), use the Every(3) constructor - To represent a scheduling every 3 months FROM NOW, use the Every(on(now.getMonth, 3)) constructor
See Also: