net.i2p.router.peermanager
Class InverseCapacityComparator
java.lang.Object
net.i2p.router.peermanager.InverseCapacityComparator
- All Implemented Interfaces:
- Comparator
class InverseCapacityComparator
- extends Object
- implements Comparator
Order profiles by their capacity, but backwards (highest capacity / value first).
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
InverseCapacityComparator
InverseCapacityComparator()
compare
public int compare(Object lhs,
Object rhs)
- Compare the two objects backwards. The standard comparator returns
-1 if lhs is less than rhs, 1 if lhs is greater than rhs, or 0 if they're
equal. To keep a strict ordering, we measure peers with equal capacity
values according to their speed
- Specified by:
compare
in interface Comparator
- Returns:
- -1 if the right hand side is smaller, 1 if the left hand side is
smaller, or 0 if they are the same peer (Comparator.compare() inverted)