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