Generated by
JDiff

Class com.google.common.collect.ForwardingNavigableMap

Changed Methods
Entry ceilingEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
 
K ceilingKey(K extends Object) Change in return type from (K extends Object) to K.
 
Entry firstEntry() Change in return type from (Entry<K, V>) to Entry.
 
Entry floorEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
 
K floorKey(K extends Object) Change in return type from (K extends Object) to K.
 
Entry higherEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
 
K higherKey(K extends Object) Change in return type from (K extends Object) to K.
 
Entry lastEntry() Change in return type from (Entry<K, V>) to Entry.
 
Entry lowerEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
 
K lowerKey(K extends Object) Change in return type from (K extends Object) to K.
 
Entry pollFirstEntry() Change in return type from (Entry<K, V>) to Entry.
 
Entry pollLastEntry() Change in return type from (Entry<K, V>) to Entry.
 
Entry standardCeilingEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .ceilingEntry in terms of the {@code firstEntry()} of .tailMap(Object, boolean).
K standardCeilingKey(K extends Object) Change in return type from (K extends Object) to K.
A sensible definition of .ceilingKey in terms of {@code ceilingEntry}.
Entry standardFirstEntry() Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .firstEntry in terms of the {@code iterator()} of .entrySet.
Entry standardFloorEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .floorEntry in terms of the {@code lastEntry()} of .headMap(Object, boolean).
K standardFloorKey(K extends Object) Change in return type from (K extends Object) to K.
A sensible definition of .floorKey in terms of {@code floorEntry}.
Entry standardHigherEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .higherEntry in terms of the {@code firstEntry()} of .tailMap(Object, boolean).
K standardHigherKey(K extends Object) Change in return type from (K extends Object) to K.
A sensible definition of .higherKey in terms of {@code higherEntry}.
Entry standardLastEntry() Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .lastEntry in terms of the {@code iterator()} of the .entrySet of .descendingMap.
Entry standardLowerEntry(K extends Object) Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .lowerEntry in terms of the {@code lastEntry()} of .headMap(Object, boolean).
K standardLowerKey(K extends Object) Change in return type from (K extends Object) to K.
A sensible definition of .lowerKey in terms of {@code lowerEntry}.
Entry standardPollFirstEntry() Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .pollFirstEntry in terms of the {@code iterator} of {@code entrySet}.
Entry standardPollLastEntry() Change in return type from (Entry<K, V>) to Entry.
A sensible definition of .pollFirstEntry in terms of the {@code iterator} of the {@code entrySet} of {@code descendingMap}.