
org.exparity.hamcrest.beans.comparators.IsComparable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hamcrest-bean Show documentation
Show all versions of hamcrest-bean Show documentation
A Java library which provides a hamcrest matcher for matching objects and graphs which follow the Java beans standard
package org.exparity.hamcrest.beans.comparators;
import org.exparity.hamcrest.beans.TheSameAs.PropertyComparator;
/**
* Implementation of a {@link PropertyComparator} which matches a string property regardless of case
*
* @author Stewart Bissett
*/
public class IsComparable> implements PropertyComparator {
public boolean matches(final T lhs, final T rhs) {
return lhs == null ? rhs == null : lhs.getClass().isInstance(rhs) && lhs.compareTo(rhs) == 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy