Changed Methods |
boolean contains(Object, Object)
|
Change in signature from (java.lang.Object, java.lang.Object ) to (Object, Object ).
|
Returns {@code true} if the table contains a mapping with the specified row and column keys. |
boolean containsColumn(Object )
|
Change in signature from java.lang.Object to Object .
|
Returns {@code true} if the table contains a mapping with the specified column. |
boolean containsRow(Object )
|
Change in signature from java.lang.Object to Object .
|
Returns {@code true} if the table contains a mapping with the specified row key. |
boolean containsValue(Object )
|
Change in signature from java.lang.Object to Object .
|
Returns {@code true} if the table contains a mapping with the specified value. |
boolean equals(Object )
|
Change in signature from java.lang.Object to Object .
|
Compares the specified object with this table for equality. |
V get(Object, Object)
|
Change in return type from (V extends Object ) to V .
Change in signature from (java.lang.Object, java.lang.Object ) to (Object, Object ).
|
Returns the value corresponding to the given row and column keys, or {@code null} if no such
mapping exists. |
V put(R, extends, Object, C, extends, Object, V, extends, Object)
|
Change in return type from (V extends Object ) to V .
|
Associates the specified value with the specified keys. |
V remove(Object, Object)
|
Change in return type from (V extends Object ) to V .
Change in signature from (java.lang.Object, java.lang.Object ) to (Object, Object ).
|
Removes the mapping, if any, associated with the given keys. |