blob: ae6cac6ed869d50570f0b026ef8f466c9c6f4095 [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.UnaryFunction;
import org.apache.commons.functor.UnaryPredicate;
import org.apache.commons.lang3.Validate;
/**
* Adapts a
* {@link UnaryPredicate UnaryPredicate}
* to the
* {@link UnaryFunction UnaryFunction} interface.
* <p/>
* Note that although this class implements
* {@link Serializable}, a given instance will
* only be truly <code>Serializable</code> if the
* underlying predicate is. Attempts to serialize
* an instance whose delegate is not
* <code>Serializable</code> will result in an exception.
*
* @param <A> the argument type.
* @version $Revision$ $Date$
*/
public final class UnaryPredicateUnaryFunction<A> implements UnaryFunction<A, Boolean>, Serializable {
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = 5660724725036398625L;
/** The {@link UnaryPredicate UnaryPredicate} I'm wrapping. */
private final UnaryPredicate<? super A> predicate;
/**
* Create a new UnaryPredicateUnaryFunction.
* @param predicate to adapt
*/
public UnaryPredicateUnaryFunction(UnaryPredicate<? super A> predicate) {
this.predicate = Validate.notNull(predicate, "UnaryPredicate argument was null");
}
/**
* {@inheritDoc}
* Returns <code>Boolean.TRUE</code> (<code>Boolean.FALSE</code>)
* when the {@link UnaryPredicate#test test} method of my underlying
* predicate returns <code>true</code> (<code>false</code>).
*
* @return a non-<code>null</code> <code>Boolean</code> instance
*/
public Boolean evaluate(A obj) {
return Boolean.valueOf(predicate.test(obj));
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object that) {
return that == this
|| (that instanceof UnaryPredicateUnaryFunction<?> && equals((UnaryPredicateUnaryFunction<?>) that));
}
/**
* Learn whether another UnaryPredicateUnaryFunction is equal to this.
* @param that UnaryPredicateUnaryFunction to test
* @return boolean
*/
public boolean equals(UnaryPredicateUnaryFunction<?> that) {
return null != that && predicate.equals(that.predicate);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "UnaryPredicateUnaryFunction".hashCode();
hash ^= predicate.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "UnaryPredicateUnaryFunction<" + predicate + ">";
}
/**
* Adapt a UnaryPredicate to the UnaryFunction interface.
* @param <A> the argument type.
* @param predicate to adapt
* @return UnaryPredicateUnaryFunction
*/
public static <A> UnaryPredicateUnaryFunction<A> adapt(UnaryPredicate<? super A> predicate) {
return null == predicate ? null : new UnaryPredicateUnaryFunction<A>(predicate);
}
}