Process the opening square bracket of a JSON array. @throws UncheckedIOException if an I/O exception is encountered
()
| 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. |