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

org.valkyriercp.rules.constraint.And Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package org.valkyriercp.rules.constraint;

import java.util.Iterator;

/**
 * A "and" compound constraint (aka conjunction).
 *
 * @author Keith Donald
 */
public class And extends CompoundConstraint {

	/**
	 * Creates a empty And conjunction.
	 */
	public And() {
		super();
	}

	/**
	 * "Ands" two constraints.
	 *
	 * @param constraint1
	 *            The first constraint.
	 * @param constraint2
	 *            The second constraint.
	 */
	public And(Constraint constraint1, Constraint constraint2) {
		super(constraint1, constraint2);
	}

	/**
	 * "Ands" the specified constraints.
	 *
	 * @param constraints
	 *            The constraints
	 */
	public And(Constraint[] constraints) {
		super(constraints);
	}

	/**
	 * Tests if all of the constraints aggregated by this compound constraint
	 * return true when evaulating this argument.
	 *
	 * @see Constraint#test(java.lang.Object)
	 */
	public boolean test(Object argument) {
		for (Iterator i = iterator(); i.hasNext();) {
			if (!((Constraint)i.next()).test(argument)) {
				return false;
			}
		}
		return true;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy