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