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