MCPcopy Create free account
hub / github.com/grpc/grpc-java / forRawKeyValue

Method forRawKeyValue

api/src/main/java/io/grpc/QueryParams.java:229–233  ·  view source on GitHub ↗
(String rawKey, String rawValue)

Source from the content-addressed store, hash-verified

227 }
228
229 static Entry forRawKeyValue(String rawKey, String rawValue) {
230 checkNotNull(rawKey, "rawKey");
231 checkNotNull(rawValue, "rawValue");
232 return new Entry(rawKey, rawValue, decode(rawKey), decode(rawValue));
233 }
234
235 static Entry forRawLoneKey(String rawKey) {
236 checkNotNull(rawKey, "rawKey");

Callers 3

fromRawQueryMethod · 0.95

Calls 2

checkNotNullMethod · 0.80
decodeMethod · 0.45