Class TableCollectors.MutableCell<R,​C,​V>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private C column  
      private R row  
      private V value  
    • Constructor Summary

      Constructors 
      Constructor Description
      MutableCell​(R row, C column, V value)  
    • Field Detail

      • row

        private final R row
      • column

        private final C column
      • value

        private V value
    • Constructor Detail

      • MutableCell

        MutableCell​(R row,
                    C column,
                    V value)
    • 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.
      • merge

        void merge​(V value,
                   java.util.function.BinaryOperator<V> mergeFunction)