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

Method beginArray

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

333 * @throws UncheckedIOException if an I/O exception is encountered
334 */
335 public void beginArray() {
336 expect(JsonType.START_COLLECTION);
337 stack.addFirst(Container.COLLECTION);
338 input.read();
339 }
340
341 /**
342 * Process the closing square bracket of a JSON array.

Calls 2

expectMethod · 0.95
readMethod · 0.65