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, wait
getColumnKey, getRowKey, getValue
public boolean equals(java.lang.Object obj)
Table.Cell
equals
in interface Table.Cell<R,C,V>
equals
in class java.lang.Object
public int hashCode()
Table.Cell
The 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.Object
public java.lang.String toString()
toString
in class java.lang.Object