Interface Table.Cell<R,C,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequals(Object obj)Compares the specified object with this cell for equality.CgetColumnKey()Returns the column key of this cell.RgetRowKey()Returns the row key of this cell.VgetValue()Returns the value of this cell.inthashCode()Returns the hash code of this cell.
-
-
-
Method Detail
-
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
boolean equals(Object obj)
Compares the specified object with this cell for equality. Two cells are equal when they have equal row keys, column keys, and values.
-
-