Process the opening curly brace of a JSON object. @throws UncheckedIOException if an I/O exception is encountered
()
| 418 | * @throws UncheckedIOException if an I/O exception is encountered |
| 419 | */ |
| 420 | public void beginObject() { |
| 421 | expect(JsonType.START_MAP); |
| 422 | stack.addFirst(Container.MAP_NAME); |
| 423 | containerHasElement.addFirst(false); |
| 424 | input.read(); |
| 425 | } |
| 426 | |
| 427 | /** |
| 428 | * Process the closing curly brace of a JSON object. |