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

Method beginObject

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

360 * @throws UncheckedIOException if an I/O exception is encountered
361 */
362 public void beginObject() {
363 expect(JsonType.START_MAP);
364 stack.addFirst(Container.MAP_NAME);
365 input.read();
366 }
367
368 /**
369 * Process the closing curly brace of a JSON object.

Callers 15

skipValueMethod · 0.95
canReturnStatusMethod · 0.45
nestedMapIsFineMethod · 0.45
fromJsonMethod · 0.45
fromJsonMethod · 0.45
writeToMethod · 0.45

Calls 2

expectMethod · 0.95
readMethod · 0.65