public boolean equals()

in core/src/main/java/org/apache/commons/functor/core/composite/ConditionalNullaryPredicate.java [78:89]


    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof ConditionalNullaryPredicate)) {
            return false;
        }
        ConditionalNullaryPredicate that = (ConditionalNullaryPredicate) obj;
        return this.ifPred.equals(that.ifPred)
                && this.thenPred.equals(that.thenPred)
                && this.elsePred.equals(that.elsePred);
    }