blob: 4b371ca1af17b8d16efc63068944c1d18fffb10f [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.BinaryProcedure;
import org.apache.commons.functor.Procedure;
import org.apache.commons.lang3.Validate;
/**
* Adapts a
* {@link Procedure Procedure}
* to the
* {@link BinaryProcedure BinaryProcedure} interface
* by ignoring the second binary argument.
* <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.
*
* @param <L> the left argument type.
* @param <R> the right argument type.
* @version $Revision$ $Date$
*/
public final class IgnoreRightProcedure<L, R> implements BinaryProcedure<L, R>, Serializable {
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = -7374293905310619206L;
/** The {@link Procedure Procedure} I'm wrapping. */
private final Procedure<? super L> procedure;
/**
* Create a new IgnoreRightProcedure.
* @param procedure Procedure to adapt
*/
public IgnoreRightProcedure(Procedure<? super L> procedure) {
this.procedure = Validate.notNull(procedure, "Procedure argument was null");
}
/**
* {@inheritDoc}
*/
public void run(L left, R right) {
procedure.run(left);
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object that) {
return that == this || (that instanceof IgnoreRightProcedure<?, ?>
&& equals((IgnoreRightProcedure<?, ?>) that));
}
/**
* Learn whether another IgnoreRightProcedure is equal to this.
* @param that IgnoreRightProcedure to test
* @return boolean
*/
public boolean equals(IgnoreRightProcedure<?, ?> that) {
return null != that && procedure.equals(that.procedure);
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "IgnoreRightProcedure".hashCode();
hash ^= procedure.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "IgnoreRightProcedure<" + procedure + ">";
}
/**
* Adapt a Procedure to the BinaryProcedure interface.
* @param <L> left type
* @param <R> right type
* @param procedure Procedure to adapt
* @return IgnoreRightProcedure
*/
public static <L, R> IgnoreRightProcedure<L, R> adapt(Procedure<? super L> procedure) {
return null == procedure ? null : new IgnoreRightProcedure<L, R>(procedure);
}
}