Class Namer.Comparator<T>

  • Type Parameters:
    T - The type of object that the namer can name
    All Implemented Interfaces:
    java.util.Comparator<T>
    Enclosing interface:
    Namer<T>

    public static class Namer.Comparator<T>
    extends java.lang.Object
    implements java.util.Comparator<T>
    A comparator implementation based on the names returned by the given namer.
    • Constructor Summary

      Constructors 
      Constructor Description
      Comparator​(Namer<? super T> namer)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int compare​(T o1, T o2)  
      boolean equals​(java.lang.Object obj)  
      int hashCode()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Comparator

        reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
    • Constructor Detail

      • Comparator

        public Comparator​(Namer<? super T> namer)
    • Method Detail

      • compare

        public int compare​(T o1,
                           T o2)
        Specified by:
        compare in interface java.util.Comparator<T>
      • equals

        public boolean equals​(java.lang.Object obj)
        Specified by:
        equals in interface java.util.Comparator<T>
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object