Read the next element of the JSON input stream as a null object. @return null object @throws JsonException if the next element isn't a null @throws UncheckedIOException if an I/O exception is encountered
()
| 210 | * @throws UncheckedIOException if an I/O exception is encountered |
| 211 | */ |
| 212 | public @Nullable Object nextNull() { |
| 213 | expect(JsonType.NULL); |
| 214 | return read("null", str -> null); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Read the next element of the JSON input stream as a number. |