Class VerticalEdgeMapEntryComparator<T>

  • Type Parameters:
    T -
    All Implemented Interfaces:
    Comparator<Map.Entry<T,​Rectangle2D>>

    public class VerticalEdgeMapEntryComparator<T>
    extends Object
    implements Comparator<Map.Entry<T,​Rectangle2D>>
    A comparator to compare along the y-axis, Map.Entries where the values are Rectangle2D First compare the min y values, then the max y values
    Author:
    Tom Nelson
    • Constructor Detail

      • VerticalEdgeMapEntryComparator

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

        public int compare​(Node<?> leftVertex,
                           Node<?> rightVertex)