Generated by
JDiff

Interface com.google.common.collect.Table

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