blob: 1e6a8614f819f0346f892575c51db2ea08cf2944 [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.adapter;
import java.io.Serializable;
import org.apache.commons.functor.Predicate;
import org.apache.commons.functor.UnaryPredicate;
/**
* Adapts a
* {@link Predicate Predicate}
* to the
* {@link UnaryPredicate UnaryPredicate} interface
* by ignoring the given argument.
* <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.
*
* @version $Revision$ $Date$
* @author Rodney Waldhoff
*/
public final class PredicateUnaryPredicate implements UnaryPredicate, Serializable {
public PredicateUnaryPredicate(Predicate predicate) {
this.predicate = predicate;
}
public boolean test(Object obj) {
return predicate.test();
}
public boolean equals(Object that) {
if(that instanceof PredicateUnaryPredicate) {
return equals((PredicateUnaryPredicate)that);
} else {
return false;
}
}
public boolean equals(PredicateUnaryPredicate that) {
return that == this || (null != that && (null == predicate ? null == that.predicate : predicate.equals(that.predicate)));
}
public int hashCode() {
int hash = "PredicateUnaryPredicate".hashCode();
if(null != predicate) {
hash ^= predicate.hashCode();
}
return hash;
}
public String toString() {
return "PredicateUnaryPredicate<" + predicate + ">";
}
public static PredicateUnaryPredicate adapt(Predicate predicate) {
return null == predicate ? null : new PredicateUnaryPredicate(predicate);
}
/** The {@link Predicate Predicate} I'm wrapping. */
private Predicate predicate = null;
}