Interface Table.Cell<R,C,V>
public static interface Table.Cell<R,C,V>
Row key / column key / value triplet corresponding to a mapping in a table.
- Since:
- 7.0
-
Method Details
-
getRowKey
-
getColumnKey
-
getValue
-
equals
-
hashCode
int 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()).
-