Consumes the next token from the JSON stream and asserts that it is the beginning of a new object.
()
| 303 | * beginning of a new object. |
| 304 | */ |
| 305 | public void beginObject() throws IOException { |
| 306 | expect(JsonToken.BEGIN_OBJECT); |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Consumes the next token from the JSON stream and asserts that it is the |