Class VerticalEdgeNodeComparator<T>

  • Type Parameters:
    T -
    All Implemented Interfaces:
    Comparator<Node<T>>

    public class VerticalEdgeNodeComparator<T>
    extends Object
    implements Comparator<Node<T>>
    A comparator to compare along the y-axis, Vertices where the values are Rectangle2D First compare the min y values, then the max y values
    Author:
    Tom Nelson
    • Constructor Detail

      • VerticalEdgeNodeComparator

        public VerticalEdgeNodeComparator()
    • 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.