blob: b83dff1fa8fc9876ab4d97ee8dc14270cce0a815 [file] [log] [blame]
/*
* Copyright 2003,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.functor.core.composite;
import java.io.Serializable;
import org.apache.commons.functor.BinaryPredicate;
/**
* {@link #test Tests} to the logical inverse
* of some other predicate.
* <p>
* Note that although this class implements
* {@link Serializable}, a given instance will
* only be truly <code>Serializable</code> if the
* underlying functor is. Attempts to serialize
* an instance whose delegate is not
* <code>Serializable</code> will result in an exception.
* </p>
* @version $Revision$ $Date$
* @author Rodney Waldhoff
*/
public final class BinaryNot implements BinaryPredicate, Serializable {
// constructor
// ------------------------------------------------------------------------
public BinaryNot(BinaryPredicate p) {
this.predicate = p;
}
// predicate interface
// ------------------------------------------------------------------------
public boolean test(Object left, Object right) {
return !(predicate.test(left,right));
}
public boolean equals(Object that) {
if(that instanceof BinaryNot) {
return equals((BinaryNot)that);
} else {
return false;
}
}
public boolean equals(BinaryNot that) {
return null != that && (null == predicate ? null == that.predicate : predicate.equals(that.predicate));
}
public int hashCode() {
int hash = "BinaryNot".hashCode();
if(null != predicate) {
hash ^= predicate.hashCode();
}
return hash;
}
public String toString() {
return "BinaryNot<" + predicate + ">";
}
// static
// ------------------------------------------------------------------------
public static BinaryPredicate not(BinaryPredicate that) {
return null == that ? null : new BinaryNot(that);
}
// attributes
// ------------------------------------------------------------------------
private BinaryPredicate predicate = null;
}