Package com.google.common.collect
Interface SortedMapDifference<K,V>
-
- All Superinterfaces:
MapDifference<K,V>
@GwtCompatible @Deprecated(since="2022-12-01") public interface SortedMapDifference<K,V> extends MapDifference<K,V>
Deprecated.The Google Guava Core Libraries are deprecated and will not be part of the AEM SDK after April 2023An object representing the differences between two sorted maps.- Since:
- 8.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.common.collect.MapDifference
MapDifference.ValueDifference<V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.SortedMap<K,MapDifference.ValueDifference<V>>
entriesDiffering()
Deprecated.Returns an unmodifiable map describing keys that appear in both maps, but with different values.java.util.SortedMap<K,V>
entriesInCommon()
Deprecated.Returns an unmodifiable map containing the entries that appear in both maps; that is, the intersection of the two maps.java.util.SortedMap<K,V>
entriesOnlyOnLeft()
Deprecated.Returns an unmodifiable map containing the entries from the left map whose keys are not present in the right map.java.util.SortedMap<K,V>
entriesOnlyOnRight()
Deprecated.Returns an unmodifiable map containing the entries from the right map whose keys are not present in the left map.-
Methods inherited from interface com.google.common.collect.MapDifference
areEqual, equals, hashCode
-
-
-
-
Method Detail
-
entriesOnlyOnLeft
java.util.SortedMap<K,V> entriesOnlyOnLeft()
Deprecated.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.- Specified by:
entriesOnlyOnLeft
in interfaceMapDifference<K,V>
-
entriesOnlyOnRight
java.util.SortedMap<K,V> entriesOnlyOnRight()
Deprecated.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.- Specified by:
entriesOnlyOnRight
in interfaceMapDifference<K,V>
-
entriesInCommon
java.util.SortedMap<K,V> entriesInCommon()
Deprecated.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.- Specified by:
entriesInCommon
in interfaceMapDifference<K,V>
-
entriesDiffering
java.util.SortedMap<K,MapDifference.ValueDifference<V>> entriesDiffering()
Deprecated.Description copied from interface:MapDifference
Returns an unmodifiable map describing keys that appear in both maps, but with different values.- Specified by:
entriesDiffering
in interfaceMapDifference<K,V>
-
-