blob: 0ebcb9a4d258a33182d99f7e7fc1879129afbc0f [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.UnaryProcedure;
import org.apache.commons.lang3.Validate;
/**
* Adapts a
* {@link UnaryProcedure UnaryProcedure}
* to the
* {@link UnaryFunction UnaryFunction} interface
* by always returning <code>null</code>.
* <p/>
* Note that although this class implements
* {@link Serializable}, a given instance will
* only be truly <code>Serializable</code> if the
* underlying procedure is. Attempts to serialize
* an instance whose delegate is not
* <code>Serializable</code> will result in an exception.
*
* @param <A> the argument type.
* @param <T> the returned value type.
* @version $Revision$ $Date$
*/
public final class UnaryProcedureUnaryFunction<A, T> implements UnaryFunction<A, T>, Serializable {
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = 6153848695167906659L;
/** The {@link UnaryProcedure UnaryProcedure} I'm wrapping. */
private final UnaryProcedure<? super A> procedure;
/**
* Create a new UnaryProcedureUnaryFunction.
* @param procedure to adapt
*/
public UnaryProcedureUnaryFunction(UnaryProcedure<? super A> procedure) {
this.procedure = Validate.notNull(procedure, "UnaryProcedure argument was null");
}
/**
* {@inheritDoc}
*/
public T evaluate(A obj) {
procedure.run(obj);
return null;
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object that) {
return that == this || (that instanceof UnaryProcedureUnaryFunction<?, ?>
&& equals((UnaryProcedureUnaryFunction<?, ?>) that));
}
/**
* Learn whether a given UnaryProcedureUnaryFunction is equal to this.
* @param that UnaryProcedureUnaryFunction to test
* @return boolean
*/
public boolean equals(UnaryProcedureUnaryFunction<?, ?> that) {
return null != that && procedure.equals(that.procedure);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "UnaryProcedureUnaryFunction".hashCode();
hash ^= procedure.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "UnaryProcedureUnaryFunction<" + procedure + ">";
}
/**
* Adapt a UnaryProcedure to the UnaryFunction interface.
* @param <A> the argument type.
* @param <T> the returned value type.
* @param procedure to adapt
* @return UnaryProcedureUnaryFunction
*/
public static <A, T> UnaryProcedureUnaryFunction<A, T> adapt(UnaryProcedure<? super A> procedure) {
return null == procedure ? null : new UnaryProcedureUnaryFunction<A, T>(procedure);
}
}