Interface Table.Cell<R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
- Enclosing interface:
Table<R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
-
Method Details
-
getRowKey
R getRowKey()Returns the row key of this cell. -
getColumnKey
C getColumnKey()Returns the column key of this cell. -
getValue
V getValue()Returns the value of this cell. -
equals
-
hashCode
int hashCode()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())
.
-