org.joo.libra.logic.AndPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joo-libra Show documentation
Show all versions of joo-libra Show documentation
Java Predicate with SQL-like syntax support
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.PredicateExecutionException;
public class AndPredicate extends CompositionPredicate {
private Predicate[] predicates;
@SafeVarargs
public AndPredicate(Predicate... predicates) {
this.predicates = predicates;
}
@Override
public boolean satisfiedBy(PredicateContext context) throws PredicateExecutionException {
if (predicates == null) return true;
for(Predicate predicate : predicates) {
if (!predicate.satisfiedBy(context))
return false;
}
return true;
}
}