static final class Tables.ImmutableCell<R,C,V> extends Tables.AbstractCell<R,C,V> implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
private C |
columnKey |
private R |
rowKey |
private static long |
serialVersionUID |
private V |
value |
Constructor and Description |
---|
ImmutableCell(R rowKey,
C columnKey,
V value) |
Modifier and Type | Method and Description |
---|---|
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.
|
equals, hashCode, toString
private final R rowKey
private final C columnKey
private final V value
private static final long serialVersionUID
public R getRowKey()
Table.Cell
getRowKey
in interface Table.Cell<R,C,V>
public C getColumnKey()
Table.Cell
getColumnKey
in interface Table.Cell<R,C,V>
public V getValue()
Table.Cell
getValue
in interface Table.Cell<R,C,V>