Returns an immutable cell with the specified row key, column key, and value. The returned cell is serializable. @param rowKey the row key to be associated with the returned cell @param columnKey the column key to be associated with the returned cell @param value the value to be associated with
(@Nullable R rowKey, @Nullable C columnKey, @Nullable V value)
| 64 | |
| 65 | |
| 66 | public static <R, C, V> Cell<R, C, V> immutableCell(@Nullable R rowKey, @Nullable C columnKey, @Nullable V value) { |
| 67 | return new ImmutableCell<R, C, V>(rowKey, columnKey, value); |
| 68 | } |
| 69 | |
| 70 | static final class ImmutableCell<R, C, V> extends AbstractCell<R, C, V> implements Serializable { |
| 71 | private final R rowKey; |