Class EqualComparator
java.lang.Object
org.apache.tools.ant.types.selectors.modifiedselector.EqualComparator
- All Implemented Interfaces:
Comparator<Object>
Simple implementation of Comparator for use in CacheSelector.
compare() returns '0' (should not be selected) if both parameter
are equal otherwise '1' (should be selected).
- Since:
- Ant 1.6
- Version:
- 2003-09-13
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Comparator
equals, max, min, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Constructor Details
-
EqualComparator
public EqualComparator()
-
-
Method Details
-
compare
Implements Comparator.compare().- Specified by:
comparein interfaceComparator<Object>- Parameters:
o1- the first objecto2- the second object- Returns:
- 0, if both are equal, otherwise 1
-
toString
-