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

Method beginObject

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

Process the opening curly brace of a JSON object. @throws UncheckedIOException if an I/O exception is encountered

()

Source from the content-addressed store, hash-verified

418 * @throws UncheckedIOException if an I/O exception is encountered
419 */
420 public void beginObject() {
421 expect(JsonType.START_MAP);
422 stack.addFirst(Container.MAP_NAME);
423 containerHasElement.addFirst(false);
424 input.read();
425 }
426
427 /**
428 * Process the closing curly brace of a JSON object.

Calls 2

expectMethod · 0.95
readMethod · 0.65