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

Method Entry

api/src/main/java/io/grpc/QueryParams.java:173–178  ·  view source on GitHub ↗
(String rawKey, @Nullable String rawValue, String key, @Nullable String value)

Source from the content-addressed store, hash-verified

171 @Nullable private final String value;
172
173 private Entry(String rawKey, @Nullable String rawValue, String key, @Nullable String value) {
174 this.rawKey = checkNotNull(rawKey, "rawKey");
175 this.rawValue = rawValue;
176 this.key = checkNotNull(key, "key");
177 this.value = value;
178 }
179
180 /**
181 * Returns the key.

Callers

nothing calls this directly

Calls 1

checkNotNullMethod · 0.80

Tested by

no test coverage detected