| Modifier and Type | Method | Description |
|---|---|---|
boolean |
equals(java.lang.Object obj) |
Compares the specified object with this cell for equality.
|
C |
getColumnKey() |
Returns the column key of this cell.
|
R |
getRowKey() |
Returns the row key of this cell.
|
V |
getValue() |
Returns the value of this cell.
|
int |
hashCode() |
Returns the hash code of this cell.
|
@Nullable R getRowKey()
@Nullable C getColumnKey()
@Nullable V getValue()
boolean equals(@Nullable
java.lang.Object obj)
equals in class java.lang.Objectint hashCode()
The hash code of a table cell is equal to Objects.hashCode(java.lang.Object...)(e.getRowKey(), e.getColumnKey(), e.getValue()).
hashCode in class java.lang.Object