MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / nextNull

Method nextNull

java/src/org/openqa/selenium/json/JsonInput.java:212–215  ·  view source on GitHub ↗

Read the next element of the JSON input stream as a null object. @return null object @throws JsonException if the next element isn't a null @throws UncheckedIOException if an I/O exception is encountered

()

Source from the content-addressed store, hash-verified

210 * @throws UncheckedIOException if an I/O exception is encountered
211 */
212 public @Nullable Object nextNull() {
213 expect(JsonType.NULL);
214 return read("null", str -> null);
215 }
216
217 /**
218 * Read the next element of the JSON input stream as a number.

Callers 3

skipValueMethod · 0.95
coerceMethod · 0.80

Calls 2

expectMethod · 0.95
readMethod · 0.95

Tested by 1