Changed Methods |
K extends Object firstKey()
|
Change in return type from K to (K extends Object ).
|
|
SortedMap<K, V> headMap(K extends Object )
|
Change in signature from K to (K extends Object ).
|
|
K extends Object lastKey()
|
Change in return type from K to (K extends Object ).
|
|
boolean standardContainsKey(Object )
|
Change in signature from Object to java.lang.Object .
|
A sensible definition of .containsKey in terms of the {@code firstKey()} method of
.tailMap. |
SortedMap<K, V> standardSubMap(K, extends, Object, K, extends, Object)
|
Change in signature from (K, K ) to (K extends Object, K extends Object ).
|
A sensible default implementation of .subMap(Object, Object) in terms of .headMap(Object) and .tailMap(Object). |
SortedMap<K, V> subMap(K, extends, Object, K, extends, Object)
|
Change in signature from (K, K ) to (K extends Object, K extends Object ).
|
|
SortedMap<K, V> tailMap(K extends Object )
|
Change in signature from K to (K extends Object ).
|
|