Class 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 Detail

      • HorizontalEdgeNodeComparator

        public HorizontalEdgeNodeComparator()
    • 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 arguments
        ClassCastException - if the arguments' types prevent them from being compared by this comparator.