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- 
getRowKeyR getRowKey()Returns the row key of this cell.
- 
getColumnKeyC getColumnKey()Returns the column key of this cell.
- 
getValueV getValue()Returns the value of this cell.
- 
equals
- 
hashCodeint hashCode()Returns the hash code of this cell.The hash code of a table cell is equal to Objects.hashCode(Object)(e.getRowKey(), e.getColumnKey(), e.getValue()).
 
-