Generated by
JDiff

Interface com.google.common.collect.Table

Changed Methods
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 get(Object, 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 remove(Object, Object) Change in signature from (Object, Object) to (java.lang.Object, java.lang.Object).
Removes the mapping, if any, associated with the given keys.