MCPcopy Create free account
hub / github.com/antlr/codebuff / immutableCell

Method immutableCell

output/java_guava/1.4.17/Tables.java:66–68  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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;

Callers 4

nextMethod · 0.95
cellOfMethod · 0.95
applyMethod · 0.45
applyMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected