All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.sauronsoftware.cron4j.ValueMatcher Maven / Gradle / Ivy

/*
 * cron4j - A pure Java cron-like scheduler
 * 
 * Copyright (C) 2007-2010 Carlo Pelliccia (www.sauronsoftware.it)
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version
 * 2.1, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License 2.1 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License version 2.1 along with this program.
 * If not, see .
 */
package it.sauronsoftware.cron4j;

/**
 * 

* This interface describes the ValueMatcher behavior. A ValueMatcher is an * object that validate an integer value against a set of rules. *

* * @author Carlo Pelliccia */ interface ValueMatcher { /** * Validate the given integer value against a set of rules. * * @param value * The value. * @return true if the given value matches the rules of the ValueMatcher, * false otherwise. */ public boolean match(int value); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy