HomeSort by relevance Sort by last modified time
    Searched defs:rightValue (Results 1 - 25 of 34) sorted by null

1 2

  /external/guava/guava/src/com/google/common/collect/
MapDifference.java 85 * {@link #leftValue} and {@link #rightValue} are not equal, and one but not
99 V rightValue();
103 * values are equal and their {@link #rightValue()} values are also equal.
109 * {@code Arrays.asList(leftValue(), rightValue()).hashCode()}.
Maps.java 365 V rightValue = onlyOnRight.remove(leftKey);
366 if (valueEquivalence.equivalent(leftValue, rightValue)) {
371 leftKey, ValueDifferenceImpl.create(leftValue, rightValue));
494 public V rightValue() {
503 && Objects.equal(this.right, that.rightValue());
554 V rightValue = onlyOnRight.remove(leftKey);
555 if (Objects.equal(leftValue, rightValue)) {
560 leftKey, ValueDifferenceImpl.create(leftValue, rightValue));
    [all...]