Returns true if the current array or object has another element.
()
| 329 | * Returns true if the current array or object has another element. |
| 330 | */ |
| 331 | public boolean hasNext() throws IOException { |
| 332 | quickPeek(); |
| 333 | return token != JsonToken.END_OBJECT && token != JsonToken.END_ARRAY; |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Returns the type of the next token without consuming it. |