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

org.joo.libra.logic.NotPredicate Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.joo.libra.logic;

import org.joo.libra.Predicate;
import org.joo.libra.PredicateContext;
import org.joo.libra.common.CompositionPredicate;
import org.joo.libra.support.exceptions.PredicateExecutionException;

/**
 * Represents a predicate with not rule. It will be satisfied by if
 * and only if the child predicate is not satisfied.
 * 
 * @author griever
 *
 */
public class NotPredicate implements CompositionPredicate {

	private Predicate predicate;

	public NotPredicate(final Predicate predicate) {
		this.predicate = predicate;
	}

	@Override
	public boolean satisfiedBy(final PredicateContext context) throws PredicateExecutionException {
		return !predicate.satisfiedBy(context);
	}

	public String toString() {
		return "NOT(" + predicate.toString() + ")";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy