blob: 939343e2a3342d7ba30a3a72396ab047ea02c0f2 [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.Predicate;
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 <A> the argument type.
* @version $Revision$ $Date$
*/
public final class Not<A> implements Predicate<A>, Serializable {
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = -97785102566566058L;
// attributes
// ------------------------------------------------------------------------
/**
* The adapted predicate.
*/
private final Predicate<? super A> predicate;
// constructor
// ------------------------------------------------------------------------
/**
* Create a new Not.
* @param predicate Predicate to negate
*/
public Not(Predicate<? super A> predicate) {
this.predicate = Validate.notNull(predicate, "Predicate argument was null");
}
// predicate interface
// ------------------------------------------------------------------------
/**
* {@inheritDoc}
*/
public boolean test(A obj) {
return !(predicate.test(obj));
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object that) {
return that == this || (that instanceof Not<?> && equals((Not<?>) that));
}
/**
* Learn whether another Not is equal to this.
* @param that Not to test
* @return boolean
*/
public boolean equals(Not<?> that) {
return null != that && predicate.equals(that.predicate);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "Not".hashCode();
hash ^= predicate.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "Not<" + predicate + ">";
}
// static
// ------------------------------------------------------------------------
/**
* Invert a Predicate.
* @param <A> the argument type.
* @param pred Predicate to invert
* @return Predicate<A>
*/
public static <A> Predicate<A> not(Predicate<? super A> pred) {
return null == pred ? null : new Not<A>(pred);
}
}