Class ListComparator

java.lang.Object
org.springframework.ldap.support.ListComparator
All Implemented Interfaces:
Serializable, Comparator

public class ListComparator extends Object implements Comparator, Serializable
Comparator for comparing lists of Comparable objects.
See Also:
  • Constructor Details

    • ListComparator

      public ListComparator()
  • Method Details

    • compare

      public int compare(Object o1, Object o2)
      Compare two lists of Comparable objects.
      Specified by:
      compare in interface Comparator
      Parameters:
      o1 - the first object to be compared.
      o2 - the second object to be compared.
      Throws:
      ClassCastException - if any of the lists contains an object that is not Comparable.