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, toStringprivate final R rowKey
private final C columnKey
private final V value
private static final long serialVersionUID
public R getRowKey()
Table.CellgetRowKey in interface Table.Cell<R,C,V>public C getColumnKey()
Table.CellgetColumnKey in interface Table.Cell<R,C,V>public V getValue()
Table.CellgetValue in interface Table.Cell<R,C,V>