Interface SortedMapDifference<K,V>

  • All Superinterfaces:
    MapDifference<K,V>


    @GwtCompatible
    public interface SortedMapDifference<K,V>
    extends MapDifference<K,V>
    An object representing the differences between two sorted maps.
    Since:
    8.0
    • Method Detail

      • entriesOnlyOnLeft

        SortedMap<K,V> entriesOnlyOnLeft()
        Description copied from interface: MapDifference
        Returns an unmodifiable map containing the entries from the left map whose keys are not present in the right map.
      • entriesOnlyOnRight

        SortedMap<K,V> entriesOnlyOnRight()
        Description copied from interface: MapDifference
        Returns an unmodifiable map containing the entries from the right map whose keys are not present in the left map.
      • entriesInCommon

        SortedMap<K,V> entriesInCommon()
        Description copied from interface: MapDifference
        Returns an unmodifiable map containing the entries that appear in both maps; that is, the intersection of the two maps.