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

Method cellOf

output/java_guava/1.4.18/ImmutableTable.java:117–119  ·  view source on GitHub ↗

Verifies that rowKey, columnKey and value are non-null, and returns a new entry with those values.

(R rowKey, C columnKey, V value)

Source from the content-addressed store, hash-verified

115
116
117 static <R, C, V> Cell<R, C, V> cellOf(R rowKey, C columnKey, V value) {
118 return Tables.immutableCell(checkNotNull(rowKey), checkNotNull(columnKey), checkNotNull(value));
119 }
120
121 /**
122 * A builder for creating immutable table instances, especially {@code public

Callers 5

copyOfMethod · 0.95
getCellMethod · 0.45
getCellMethod · 0.45
createCellSetMethod · 0.45
putMethod · 0.45

Calls 2

immutableCellMethod · 0.95
checkNotNullMethod · 0.45

Tested by

no test coverage detected