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
()
| 301 | * @throws JsonException if the next element isn't the end of the input |
| 302 | */ |
| 303 | public void nextEnd() { |
| 304 | expect(JsonType.END); |
| 305 | } |
| 306 | |
| 307 | /** |
| 308 | * Determine whether an element is pending for the current container from the JSON input stream. |