Read the next element of the JSON input stream and expect the end of the input. @throws JsonException if the next element isn't the end of the input
()
| 340 | * @throws JsonException if the next element isn't the end of the input |
| 341 | */ |
| 342 | public void nextEnd() { |
| 343 | expect(JsonType.END); |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * Determine whether an element is pending for the current container from the JSON input stream. |