blob: b2051a3e0d47f9bac124befff96ecc83003333f4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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;
import org.apache.commons.lang3.Validate;
/**
* {@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>
* @param <L> the left argument type.
* @param <R> the right argument type.
* @version $Revision$ $Date$
*/
public final class BinaryNot<L, R> implements BinaryPredicate<L, R>, Serializable {
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = -3488974286912054737L;
// attributes
// ------------------------------------------------------------------------
/**
* The adapted predicate.
*/
private final BinaryPredicate<? super L, ? super R> predicate;
// constructor
// ------------------------------------------------------------------------
/**
* Create a new BinaryNot.
* @param predicate BinaryPredicate to negate
*/
public BinaryNot(BinaryPredicate<? super L, ? super R> predicate) {
this.predicate = Validate.notNull(predicate, "BinaryPredicate argument was null");
}
// predicate interface
// ------------------------------------------------------------------------
/**
* {@inheritDoc}
*/
public boolean test(L left, R right) {
return !(predicate.test(left, right));
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof BinaryNot<?, ?>)) {
return false;
}
BinaryNot<?, ?> that = (BinaryNot<?, ?>) obj;
return this.predicate.equals(that.predicate);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "BinaryNot".hashCode();
hash ^= predicate.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "BinaryNot<" + predicate + ">";
}
// static
// ------------------------------------------------------------------------
/**
* Negate a BinaryPredicate.
* @param <L> the left argument type.
* @param <R> the right argument type.
* @param that BinaryPredicate to negate
* @return BinaryPredicate
*/
public static <L, R> BinaryPredicate<L, R> not(BinaryPredicate<? super L, ? super R> that) {
return null == that ? null : new BinaryNot<L, R>(that);
}
}