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

Method beginArray

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

Process the opening square bracket of a JSON array. @throws UncheckedIOException if an I/O exception is encountered

()

Source from the content-addressed store, hash-verified

389 * @throws UncheckedIOException if an I/O exception is encountered
390 */
391 public void beginArray() {
392 expect(JsonType.START_COLLECTION);
393 stack.addFirst(Container.COLLECTION);
394 containerHasElement.addFirst(false);
395 input.read();
396 }
397
398 /**
399 * Process the closing square bracket of a JSON array.

Calls 2

expectMethod · 0.95
readMethod · 0.65