Consumes the next token from the JSON stream and asserts that it is the beginning of a new array.
()
| 287 | * beginning of a new array. |
| 288 | */ |
| 289 | public void beginArray() throws IOException { |
| 290 | expect(JsonToken.BEGIN_ARRAY); |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * Consumes the next token from the JSON stream and asserts that it is the |