Class HashCodeComparator<T>

  • Type Parameters:
    T - the generic type
    All Implemented Interfaces:
    java.io.Serializable, java.util.Comparator<T>

    public class HashCodeComparator<T>
    extends java.lang.Object
    implements java.util.Comparator<T>, java.io.Serializable
    This class compare two Objects by the hashcode.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int compare​(T object, T compareWithObject)
      Compare two Objects by the hashcode.
      • 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
    • Constructor Detail

      • HashCodeComparator

        public HashCodeComparator()
    • Method Detail

      • compare

        public int compare​(T object,
                           T compareWithObject)
        Compare two Objects by the hashcode.
        Specified by:
        compare in interface java.util.Comparator<T>
        Parameters:
        object - One Object.
        compareWithObject - The other Object to compare.
        Returns:
        the result.
        See Also:
        Comparator.compare(Object, Object)