blob: 6028a4bfb858927cd730402b40ed01bccb67684a [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.BinaryFunction;
import org.apache.commons.functor.BinaryPredicate;
import org.apache.commons.lang3.Validate;
/**
* Adapts a <code>Boolean</code>-valued {@link BinaryFunction BinaryFunction} to
* the {@link BinaryPredicate BinaryPredicate} interface. <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 BinaryFunctionBinaryPredicate<L, R> implements BinaryPredicate<L, R>, Serializable {
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = -5150315320718936186L;
/** The {@link BinaryFunction BinaryFunction} I'm wrapping. */
private final BinaryFunction<? super L, ? super R, Boolean> function;
/**
* Create an {@link BinaryPredicate BinaryPredicate} wrapping the given
* {@link BinaryFunction BinaryFunction}.
* @param function the {@link BinaryFunction BinaryFunction} to wrap
*/
public BinaryFunctionBinaryPredicate(final BinaryFunction<? super L, ? super R, Boolean> function) {
this.function = Validate.notNull(function, "BinaryFunction argument must not be null");
}
/**
* {@inheritDoc} Returns the <code>boolean</code> value of the
* non-<code>null</code> <code>Boolean</code> returned by the
* {@link BinaryFunction#evaluate evaluate} method of my underlying
* function.
*
* The mehod throws NullPointerException if the underlying function returns
* <code>null</code>, and
* ClassCastException if the underlying function returns a
* non-<code>Boolean</code>
*/
public boolean test(final L left, final R right) {
return function.evaluate(left, right).booleanValue();
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof BinaryFunctionBinaryPredicate<?, ?>)) {
return false;
}
BinaryFunctionBinaryPredicate<?, ?> that = (BinaryFunctionBinaryPredicate<?, ?>) obj;
return this.function.equals(that.function);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "BinaryFunctionBinaryPredicate".hashCode();
hash ^= function.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "BinaryFunctionBinaryPredicate<" + function + ">";
}
/**
* Adapt the given, possibly-<code>null</code>, {@link BinaryFunction
* BinaryFunction} to the {@link BinaryPredicate BinaryPredicate} interface.
* When the given <code>BinaryFunction</code> is <code>null</code>, returns
* <code>null</code>.
*
* @param <L> left type
* @param <R> right type
* @param <T> result type
* @param function the possibly-<code>null</code> {@link BinaryFunction
* BinaryFunction} to adapt
* @return a <code>BinaryFunctionBinaryPredicate</code> wrapping the given
* {@link BinaryFunction BinaryFunction}, or <code>null</code> if the given
* <code>BinaryFunction</code> is <code>null</code>
*/
public static <L, R, T> BinaryFunctionBinaryPredicate<L, R> adapt(
final BinaryFunction<? super L, ? super R, Boolean> function) {
return null == function ? null : new BinaryFunctionBinaryPredicate<L, R>(function);
}
}