Package com.queomedia.commons.equals
Interface EqualsChecker<T,K>
-
- Type Parameters:
T- type of the first objectsK- type of the second objects
- All Known Implementing Classes:
InstanceOfEqualsChecker,NativeEqualsChecker
public interface EqualsChecker<T,K>Compare objects by an different equals functionality then there own. This interface makes it possible to compare for example apples and oranges by equal weight.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequals(T objectT, K objectK)Calculate equality by specific attributes.
-