Class TableCollectors.MutableCell<R,C,V>

java.lang.Object
com.google.common.collect.Tables.AbstractCell<R,C,V>
com.google.common.collect.TableCollectors.MutableCell<R,C,V>
All Implemented Interfaces:
Table.Cell<R,C,V>
Enclosing class:
TableCollectors

private static final class TableCollectors.MutableCell<R,C,V> extends Tables.AbstractCell<R,C,V>
  • Field Details

    • row

      private final R row
    • column

      private final C column
    • value

      private V value
  • Constructor Details

    • MutableCell

      MutableCell(R row, C column, V value)
  • Method Details

    • 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.
    • merge

      void merge(V value, BinaryOperator<V> mergeFunction)