Associates the (rowKey, columnKey) pair with value in the built table. Duplicate key pairs are not allowed and will cause #build to fail.
(R rowKey, C columnKey, V value)
| 187 | */ |
| 188 | |
| 189 | @CanIgnoreReturnValue |
| 190 | public Builder<R, C, V> put(R rowKey, C columnKey, V value) { |
| 191 | cells.add(cellOf(rowKey, columnKey, value)); |
| 192 | return this; |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Adds the given {@code cell} to the table, making it immutable if |
no test coverage detected