Generated by
JDiff

Class com.google.common.collect.ImmutableTable

The superclass changed from java.lang.Object to com.google.common.collect.AbstractTable.
Removed interface com.google.common.collect.Table.

Removed Methods
boolean equals(Object)  
int hashCode()  
String toString()  
 

Added Methods
boolean contains(Object, Object)  
boolean containsValue(Object)  
ImmutableCollection<V> values()  
 

Changed Methods
Builder<R, C, V> builder() Change from final to non-final.
Returns a new builder.
ImmutableSet<Cell<R, C, V>> cellSet() Changed from abstract to non-abstract.  
ImmutableMap<R, V> column(C) Changed from abstract to non-abstract. {@inheritDoc}
ImmutableSet<C> columnKeySet() Changed from abstract to non-abstract.  
ImmutableTable<R, C, V> copyOf(Table<?, extends, R, ?, extends, C, ?, extends, V>) Change from final to non-final.
Returns an immutable copy of the provided table.
ImmutableMap<C, V> row(R) Changed from abstract to non-abstract. {@inheritDoc}
ImmutableSet<R> rowKeySet() Changed from abstract to non-abstract.  
ImmutableTable<R, C, V> of() Change from final to non-final.
Returns an empty immutable table.
ImmutableTable<R, C, V> of(R, C, V) Change from final to non-final.
Returns an immutable table containing a single cell.