MCPcopy Index your code
hub / github.com/google/gson / nullValue

Method nullValue

src/main/java/com/google/gson/stream/JsonWriter.java:337–341  ·  view source on GitHub ↗

Encodes null. @return this writer.

()

Source from the content-addressed store, hash-verified

335 * @return this writer.
336 */
337 public JsonWriter nullValue() throws IOException {
338 beforeValue(false);
339 out.write("null");
340 return this;
341 }
342
343 /**
344 * Encodes {@code value}.

Callers 5

testNullsMethod · 0.95
testPrettyPrintArrayMethod · 0.95
valueMethod · 0.95
testPrettyPrintObjectMethod · 0.80
writeMethod · 0.80

Calls 2

beforeValueMethod · 0.95
writeMethod · 0.45

Tested by 3

testNullsMethod · 0.76
testPrettyPrintArrayMethod · 0.76
testPrettyPrintObjectMethod · 0.64