Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ValueDifference (0.24 sec)

  1. android/guava/src/com/google/common/collect/MapDifference.java

       * intersection of the two maps.
       */
      Map<K, V> entriesInCommon();
    
      /**
       * Returns an unmodifiable map describing keys that appear in both maps, but with different
       * values.
       */
      Map<K, ValueDifference<V>> entriesDiffering();
    
      /**
       * Compares the specified object with this instance for equality. Returns {@code true} if the
       * given object is also a {@code MapDifference} and the values returned by the {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 04 13:28:27 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/SortedMapDifference.java

      @Override
      SortedMap<K, V> entriesOnlyOnLeft();
    
      @Override
      SortedMap<K, V> entriesOnlyOnRight();
    
      @Override
      SortedMap<K, V> entriesInCommon();
    
      @Override
      SortedMap<K, ValueDifference<V>> entriesDiffering();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 04 13:28:27 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

        public V rightValue() {
          return right;
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
          if (object instanceof MapDifference.ValueDifference) {
            MapDifference.ValueDifference<?> that = (MapDifference.ValueDifference<?>) object;
            return Objects.equal(this.left, that.leftValue())
                && Objects.equal(this.right, that.rightValue());
          }
          return false;
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
Back to top