Generated by
JDiff

Interface com.google.common.collect.Table

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.
V extends Object get(Object, Object) Change in return type from V to (V extends 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).
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.