blob: cf9dba7541f9782f7839c3a60c57152d25b17340 [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 UnaryPredicate UnaryPredicate}
* to the
* {@link Predicate Predicate} interface
* using a constant unary argument.
* <p/>
* Note that although this class implements
* {@link Serializable}, a given instance will
* only be truly <code>Serializable</code> if the
* underlying objects are. Attempts to serialize
* an instance whose delegates are not
* <code>Serializable</code> will result in an exception.
*
* @version $Revision$ $Date$
* @author Rodney Waldhoff
*/
public final class BoundPredicate implements Predicate, Serializable {
/**
* @param predicate the predicate to adapt
* @param arg the constant argument to use
*/
public BoundPredicate(UnaryPredicate predicate, Object arg) {
this.predicate = predicate;
this.param = arg;
}
public boolean test() {
return predicate.test(param);
}
public boolean equals(Object that) {
if(that instanceof BoundPredicate) {
return equals((BoundPredicate)that);
} else {
return false;
}
}
public boolean equals(BoundPredicate that) {
return that == this || (
(null != that) &&
(null == predicate ? null == that.predicate : predicate.equals(that.predicate)) &&
(null == param ? null == that.param : param.equals(that.param)) );
}
public int hashCode() {
int hash = "BoundPredicate".hashCode();
if(null != predicate) {
hash <<= 2;
hash ^= predicate.hashCode();
}
if(null != param) {
hash <<= 2;
hash ^= param.hashCode();
}
return hash;
}
public String toString() {
return "BoundPredicate<" + predicate + "(" + param + ")>";
}
/**
* Adapt the given, possibly-<code>null</code>,
* {@link UnaryPredicate UnaryPredicate} to the
* {@link Predicate Predicate} interface by binding
* the specified <code>Object</code> as a constant
* argument.
* When the given <code>UnaryPredicate</code> is <code>null</code>,
* returns <code>null</code>.
*
* @param predicate the possibly-<code>null</code>
* {@link UnaryPredicate UnaryPredicate} to adapt
* @param arg the object to bind as a constant argument
* @return a <code>BoundPredicate</code> wrapping the given
* {@link UnaryPredicate UnaryPredicate}, or <code>null</code>
* if the given <code>UnaryPredicate</code> is <code>null</code>
*/
public static BoundPredicate bind(UnaryPredicate predicate, Object arg) {
return null == predicate ? null : new BoundPredicate(predicate,arg);
}
/** The {@link UnaryPredicate UnaryPredicate} I'm wrapping. */
private UnaryPredicate predicate = null;
/** The parameter to pass to that predicate. */
private Object param = null;
}