Package com.google.common.collect
Class Tables.AbstractCell<R,C,V>
java.lang.Object
com.google.common.collect.Tables.AbstractCell<R,C,V>
- All Implemented Interfaces:
Table.Cell<R,
C, V>
- Direct Known Subclasses:
TableCollectors.MutableCell
,Tables.ImmutableCell
- Enclosing class:
Tables
-
Constructor Details
-
AbstractCell
AbstractCell()
-
-
Method Details
-
equals
Description copied from interface:Table.Cell
Compares the specified object with this cell for equality. Two cells are equal when they have equal row keys, column keys, and values. -
hashCode
public int hashCode()Description copied from interface:Table.Cell
Returns the hash code of this cell.The hash code of a table cell is equal to
Objects.hashCode(java.lang.Object...)
(e.getRowKey(), e.getColumnKey(), e.getValue())
. -
toString
-