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
()
| 277 | * @throws UncheckedIOException if an I/O exception is encountered |
| 278 | */ |
| 279 | public String nextString() { |
| 280 | expect(JsonType.STRING); |
| 281 | return readString(); |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * Read the next element of the JSON input stream as an instant. |