Package com.google.common.collect
Class ImmutableTable.MutableCell<R,C,V>
- java.lang.Object
-
- com.google.common.collect.Tables.AbstractCell<R,C,V>
-
- com.google.common.collect.ImmutableTable.MutableCell<R,C,V>
-
- All Implemented Interfaces:
Table.Cell<R,C,V>
- Enclosing class:
- ImmutableTable<R,C,V>
private static final class ImmutableTable.MutableCell<R,C,V> extends Tables.AbstractCell<R,C,V>
-
-
Constructor Summary
Constructors Constructor Description MutableCell(R row, C column, V value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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.(package private) void
merge(V value, java.util.function.BinaryOperator<V> mergeFunction)
-
Methods inherited from class com.google.common.collect.Tables.AbstractCell
equals, hashCode, toString
-
-
-
-
Method Detail
-
getRowKey
public R getRowKey()
Description copied from interface:Table.Cell
Returns the row key of this cell.
-
getColumnKey
public C getColumnKey()
Description copied from interface:Table.Cell
Returns the column key of this cell.
-
getValue
public V getValue()
Description copied from interface:Table.Cell
Returns the value of this cell.
-
-