Read the next element of the JSON input stream as a string. @return String object @throws JsonException if the next element isn't a string @throws UncheckedIOException if an I/O exception is encountered
()
| 316 | * @throws UncheckedIOException if an I/O exception is encountered |
| 317 | */ |
| 318 | public String nextString() { |
| 319 | expect(JsonType.STRING); |
| 320 | return readString(); |
| 321 | } |
| 322 | |
| 323 | /** |
| 324 | * Read the next element of the JSON input stream as an instant. |