Generated by
JDiff

Class com.google.common.collect.ImmutableSortedMap

Changed from abstract to non-abstract. Change from non-final to final.

Removed Methods
boolean containsValue(Object)  
 

Added Methods
(ImmutableSortedMap<K, V>copyOf(Iterable<?, extends, Entry<?, extends, K, ?, extends, V>>) Returns an immutable map containing the given entries, with keys sorted by the provided comparator.
(ImmutableSortedMap<K, V>copyOf(Iterable<?, extends, Entry<?, extends, K, ?, extends, V>>, Comparator<?, super, K>) Returns an immutable map containing the given entries, with keys sorted by the provided comparator.
V get(Object)  
 

Changed Methods
ImmutableSortedSet<K> keySet() Changed from abstract to non-abstract. Returns an immutable sorted set of the keys in this map.
ImmutableCollection<V> values() Changed from abstract to non-abstract. Returns an immutable collection of the values in this map, sorted by the ordering of the corresponding keys.
ImmutableSortedMap<K, V> headMap(K, boolean) Changed from abstract to non-abstract. This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys are less than (or equal to, if {@code inclusive}) {@code toKey}.
ImmutableSortedMap<K, V> tailMap(K, boolean) Changed from abstract to non-abstract. This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys are greater than (or equal to, if {@code inclusive}) {@code fromKey}.