MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / nextNull

Method nextNull

java/src/org/openqa/selenium/json/JsonInput.java:215–218  ·  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

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

Callers 4

skipValueMethod · 0.95
applyMethod · 0.80
coerceMethod · 0.80

Calls 2

expectMethod · 0.95
readMethod · 0.95

Tested by 1