blob: ce17283190447f9d9c068d46b23f1d7cf454b39d [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.core.comparator;
import java.io.Serializable;
import java.util.Comparator;
import org.apache.commons.functor.BinaryPredicate;
import org.apache.commons.functor.Predicate;
import org.apache.commons.functor.adapter.RightBoundPredicate;
import org.apache.commons.lang3.Validate;
/**
* A {@link BinaryPredicate BinaryPredicate} that {@link #test tests}
* <code>true</code> iff the left argument is equal to the
* right argument under the specified {@link Comparator}.
* When no (or a <code>null</code> <code>Comparator</code> is specified,
* a {@link Comparable Comparable} <code>Comparator</code> is used.
*
* @see org.apache.commons.functor.core.IsEqual
* @param <T> the binary predicate input types
* @version $Revision$ $Date$
*/
public final class IsEquivalent<T> implements BinaryPredicate<T, T>, Serializable {
/**
* Basic IsEquivalent instance.
*/
public static final IsEquivalent<Comparable<?>> INSTANCE = IsEquivalent.<Comparable<?>> instance();
/**
* serialVersionUID declaration.
*/
private static final long serialVersionUID = 1884411899682486777L;
/**
* The wrapped comparator.
*/
private final Comparator<? super T> comparator;
/**
* Create a new IsEquivalent.
*/
@SuppressWarnings("unchecked")
public IsEquivalent() {
this((Comparator<? super T>) ComparableComparator.INSTANCE);
}
/**
* Construct an <code>IsEquivalent</code> {@link BinaryPredicate predicate}
* for the given {@link Comparator Comparator}.
*
* @param comparator the {@link Comparator Comparator}, when <code>null</code>,
* a <code>Comparator</code> for {@link Comparable Comparable}s will
* be used.
*/
public IsEquivalent(Comparator<? super T> comparator) {
this.comparator = Validate.notNull(comparator, "Comparator argument must not be null");
}
/**
* Return <code>true</code> iff the <i>left</i> parameter is
* equal to the <i>right</i> parameter under my current
* {@link Comparator Comparator}.
* {@inheritDoc}
*/
public boolean test(T left, T right) {
return comparator.compare(left, right) == 0;
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object that) {
return that == this || (that instanceof IsEquivalent<?> && equals((IsEquivalent<?>) that));
}
/**
* Learn whether a given IsEquivalent is equal to this.
* @param that IsEquivalent to test
* @return boolean
*/
public boolean equals(IsEquivalent<?> that) {
if (null != that) {
return comparator.equals(that.comparator);
}
return false;
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = "IsEquivalent".hashCode();
// by construction, comparator is never null
hash ^= comparator.hashCode();
return hash;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "IsEquivalent<" + comparator + ">";
}
/**
* Get a basic IsEquivalent instance.
*
* @param <T> the binary predicate input types
* @return IsEquivalent<T>
*/
@SuppressWarnings("unchecked")
public static <T extends Comparable<?>> IsEquivalent<T> instance() {
return new IsEquivalent<T>((Comparator<? super T>) ComparableComparator.INSTANCE);
}
/**
* Get an IsEquivalent instance that always compares to <code>arg</code>.
*
* @param <T> the predicate input type
* @param right argument
* @return Predicate
*/
public static <T extends Comparable<?>> Predicate<T> instance(T right) {
return RightBoundPredicate.bind(instance(), right);
}
}