org.springframework.util.comparator
Class ComparableComparator<T extends Comparable<T>>
java.lang.Object
  
org.springframework.util.comparator.ComparableComparator<T>
- All Implemented Interfaces: 
 - Comparator<T>
 
public class ComparableComparator<T extends Comparable<T>>
- extends Object
- implements Comparator<T>
  
Comparator that adapts Comparables to the Comparator interface.
 Mainly for internal use in other Comparators, when supposed
 to work on Comparables.
- Since:
 
  - 1.2.2
 
- Author:
 
  - Keith Donald
 
- See Also:
 Comparable
 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
 
ComparableComparator
public ComparableComparator()
compare
public int compare(T o1,
                   T o2)
- Specified by:
 compare in interface Comparator<T extends Comparable<T>>