blob: 5190f3f20eec2ce0b34f02bdd5b0891b5ea17c66 [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.adapter;
import java.io.Serializable;
import org.apache.commons.functor.BinaryPredicate;
import org.apache.commons.functor.Predicate;
import org.apache.commons.lang3.Validate;
/**
* Adapts a
* {@link BinaryPredicate BinaryPredicate}
* to the
* {@link org.apache.commons.functor.UnaryPredicate UnaryPredicate} interface
* using a constant left-side 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 Matt Benson
*/
public final class FullyBoundPredicate implements Predicate, Serializable {
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = 7676235030688391839L;
/** The {@link BinaryPredicate BinaryPredicate} I'm wrapping. */
private final BinaryPredicate<Object, Object> predicate;
/** The left parameter to pass to {@code predicate}. */
private final Object left;
/** The right parameter to pass to {@code predicate}. */
private final Object right;
/**
* Create a new FullyBoundPredicate instance.
* @param <L> left type
* @param <R> right type
* @param predicate the predicate to adapt
* @param left the left argument to use
* @param right the right argument to use
*/
@SuppressWarnings("unchecked")
public <L, R> FullyBoundPredicate(BinaryPredicate<? super L, ? super R> predicate, L left, R right) {
this.predicate =
(BinaryPredicate<Object, Object>) Validate.notNull(predicate,
"BinaryPredicate argument was null");
this.left = left;
this.right = right;
}
/**
* {@inheritDoc}
*/
public boolean test() {
return predicate.test(left, right);
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object that) {
return that == this || (that instanceof FullyBoundPredicate && equals((FullyBoundPredicate) that));
}
/**
* Learn whether another FullyBoundPredicate is equal to this.
* @param that FullyBoundPredicate to test
* @return boolean
*/
public boolean equals(FullyBoundPredicate that) {
return null != that && (null == predicate ? null == that.predicate : predicate.equals(that.predicate))
&& (null == left ? null == that.left : left.equals(that.left))
&& (null == right ? null == that.right : right.equals(that.right));
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "FullyBoundPredicate".hashCode();
if (null != predicate) {
hash <<= 2;
hash ^= predicate.hashCode();
}
hash <<= 2;
if (null != left) {
hash ^= left.hashCode();
}
hash <<= 2;
if (null != right) {
hash ^= right.hashCode();
}
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "FullyBoundPredicate<" + predicate + "(" + left + ", " + right + ")>";
}
/**
* Adapt a BinaryPredicate to the Predicate interface.
* @param predicate to adapt
* @param <L> left type
* @param <R> right type
* @param left L argument to always send as the left operand to the wrapped function
* @param right R argument to always send as the right operand to the wrapped function
* @return FullyBoundPredicate
*/
public static <L, R> FullyBoundPredicate bind(
BinaryPredicate<? super L, ? super R> predicate, L left, R right) {
return null == predicate ? null : new FullyBoundPredicate(predicate, left, right);
}
}