in core/src/main/java/org/apache/commons/functor/core/composite/ConditionalPredicate.java [80:91]
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof ConditionalPredicate<?>)) {
return false;
}
ConditionalPredicate<?> that = (ConditionalPredicate<?>) obj;
return this.ifPred.equals(that.ifPred)
&& this.thenPred.equals(that.thenPred)
&& this.elsePred.equals(that.elsePred);
}