Read the next element of the JSON input stream as a boolean value. @return true or false @throws JsonException if the next element isn't the expected boolean @throws UncheckedIOException if an I/O exception is encountered
()
| 178 | * @throws UncheckedIOException if an I/O exception is encountered |
| 179 | */ |
| 180 | public boolean nextBoolean() { |
| 181 | expect(JsonType.BOOLEAN); |
| 182 | return read(input.peek() == 't' ? "true" : "false", Boolean::valueOf); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Read the next element of the JSON input stream as an object property name. |