JsonNodeIterator
You get a JsonNodeIterator object by calling the getIterator() or iterator() methods of the JsonNode class.
JsonNodeIterator - hasNext()
Determines if there is another property available.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Boolean | True if another property is available. |
JsonNodeIterator - next()
Returns the next property in the iterator.
You cannot call next() without first calling hasNext().
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| JsonNode | The next JsonNode. |