java.lang.Object
org.apache.tools.ant.types.selectors.modifiedselector.EqualComparator
All Implemented Interfaces:
Comparator<Object>

public class EqualComparator extends Object implements 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 Details

    • EqualComparator

      public EqualComparator()
  • Method Details

    • compare

      public int compare(Object o1, Object o2)
      Implements Comparator.compare().
      Specified by:
      compare in interface Comparator<Object>
      Parameters:
      o1 - the first object
      o2 - the second object
      Returns:
      0, if both are equal, otherwise 1
    • toString

      public String toString()
      Override Object.toString().
      Overrides:
      toString in class Object
      Returns:
      information about this comparator