blob: 26e7590cb957c8b5a5bae94784dd25187f6c75ea [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 org.apache.commons.functor.BinaryFunction;
import org.apache.commons.functor.BinaryProcedure;
import org.apache.commons.lang3.Validate;
/**
* Adapts a
* {@link BinaryProcedure BinaryProcedure}
* to the
* {@link BinaryFunction BinaryFunction} interface
* by always returning <code>null</code>.
*
* @param <L> the left argument type.
* @param <R> the right argument type.
* @param <T> the returned value type.
* @version $Revision$ $Date$
*/
public final class BinaryProcedureBinaryFunction<L, R, T> implements BinaryFunction<L, R, T> {
/** The {@link BinaryProcedure BinaryProcedure} I'm wrapping. */
private final BinaryProcedure<? super L, ? super R> procedure;
/**
* Create a new BinaryProcedureBinaryFunction.
* @param procedure to adapt as a BinaryFunction
*/
public BinaryProcedureBinaryFunction(BinaryProcedure<? super L, ? super R> procedure) {
this.procedure = Validate.notNull(procedure, "BinaryProcedure argument was null");
}
/**
* {@inheritDoc}
*/
public T evaluate(L left, R right) {
procedure.run(left, right);
return null;
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof BinaryProcedureBinaryFunction<?, ?, ?>)) {
return false;
}
BinaryProcedureBinaryFunction<?, ?, ?> that = (BinaryProcedureBinaryFunction<?, ?, ?>) obj;
return this.procedure.equals(that.procedure);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "BinaryProcedureBinaryFunction".hashCode();
hash ^= procedure.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "BinaryProcedureBinaryFunction<" + procedure + ">";
}
/**
* Adapt the given, possibly-<code>null</code>,
* {@link BinaryProcedure BinaryProcedure} to the
* {@link BinaryFunction BinaryFunction} interface.
* When the given <code>BinaryProcedure</code> is <code>null</code>,
* returns <code>null</code>.
*
* @param <L> the left argument type.
* @param <R> the right argument type.
* @param <T> the returned value type.
* @param procedure the possibly-<code>null</code>
* {@link BinaryFunction BinaryFunction} to adapt
* @return a <code>BinaryProcedureBinaryFunction</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> BinaryProcedureBinaryFunction<L, R, T> adapt(
BinaryProcedure<? super L, ? super R> procedure) {
return null == procedure ? null : new BinaryProcedureBinaryFunction<L, R, T>(procedure);
}
}