abstract static class Tables.AbstractCell<R,C,V> extends java.lang.Object implements Table.Cell<R,C,V>
| Constructor and Description |
|---|
AbstractCell() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj)
Compares the specified object with this cell for equality.
|
int |
hashCode()
Returns the hash code of this cell.
|
java.lang.String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitgetColumnKey, getRowKey, getValuepublic boolean equals(@CheckForNull
java.lang.Object obj)
Table.Cellequals in interface Table.Cell<R,C,V>equals in class java.lang.Objectpublic int hashCode()
Table.CellThe hash code of a table cell is equal to Objects.hashCode(java.lang.Object...)(e.getRowKey(),
e.getColumnKey(), e.getValue()).
hashCode in interface Table.Cell<R,C,V>hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Object