Class HorizontalEdgeNodeComparator<T>
- java.lang.Object
-
- org.jungrapht.visualization.spatial.rtree.HorizontalEdgeNodeComparator<T>
-
- Type Parameters:
T
-
- All Implemented Interfaces:
Comparator<Node<T>>
public class HorizontalEdgeNodeComparator<T> extends Object implements Comparator<Node<T>>
A comparator to compare along the x-axis, Vertices where the values are Rectangle2D First compare the min x values, then the max x values- Author:
- Tom Nelson
-
-
Constructor Summary
Constructors Constructor Description HorizontalEdgeNodeComparator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compare(Rectangle2D left, Rectangle2D right)
Compares its two arguments for order.int
compare(Map.Entry<?,Rectangle2D> leftVertex, Map.Entry<?,Rectangle2D> rightVertex)
int
compare(Node<T> leftVertex, Node<T> rightVertex)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
-
-
-
Method Detail
-
compare
public int compare(Rectangle2D left, Rectangle2D right)
Compares its two arguments for order. Returns a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.- Parameters:
left
- the first object to be compared.right
- the second object to be compared.- Returns:
- a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.
- Throws:
NullPointerException
- if an argument is null and this comparator does not permit null argumentsClassCastException
- if the arguments' types prevent them from being compared by this comparator.
-
compare
public int compare(Map.Entry<?,Rectangle2D> leftVertex, Map.Entry<?,Rectangle2D> rightVertex)
-
-