Class ValueDifference<V>

    • Constructor Summary

      Constructors 
      Constructor Description
      ValueDifference​(V left, V right)
      Constructor for ValueDifferenceImpl
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      int hashCode()  
      V leftValue()
      Returns the value from the left map (possibly null).
      V rightValue()
      Returns the value from the right map (possibly null).
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ValueDifference

        public ValueDifference​(V left,
                               V right)
        Constructor for ValueDifferenceImpl
        Parameters:
        left - the left
        right - the right
    • Method Detail

      • leftValue

        public V leftValue()
        Description copied from interface: IValueDifference
        Returns the value from the left map (possibly null).
        Specified by:
        leftValue in interface IValueDifference<V>
        Returns:
        the value from the left map
      • rightValue

        public V rightValue()
        Description copied from interface: IValueDifference
        Returns the value from the right map (possibly null).
        Specified by:
        rightValue in interface IValueDifference<V>
        Returns:
        the value from the right map
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
        See Also:
        Object.hashCode()
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
        See Also:
        Object.equals(java.lang.Object)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
        See Also:
        Object.toString()