public boolean equals()

in core/src/main/java/org/apache/commons/functor/adapter/RightBoundPredicate.java [63:73]


    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof RightBoundPredicate<?>)) {
            return false;
        }
        RightBoundPredicate<?> that = (RightBoundPredicate<?>) obj;
        return this.predicate.equals(that.predicate)
                && (null == this.param ? null == that.param : this.param.equals(that.param));
    }