Interface MapDifference.ValueDifference<V extends @Nullable Object>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean equals​(Object other)
      Two instances are considered equal if their leftValue() values are equal and their rightValue() values are also equal.
      int hashCode()
      The hash code equals the value Arrays.asList(leftValue(), rightValue()).hashCode().
      V leftValue()
      Returns the value from the left map (possibly null).
      V rightValue()
      Returns the value from the right map (possibly null).