| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
This should allow easy access to the member name during iteration.
|
| |
|
|
|
| |
Allow retrieving a list of member names from the current cursor position
of the JsonReader. It's useful if you're trying to inspect a JSON tree.
|
| |
|
|
|
| |
A JsonReader is useless without a root JsonNode to start walking the
tree from.
|
| |
|
|
|
|
|
| |
Since JsonParser has far more methods for parsing a JSON stream we
should just make JsonReader an API for reading an already parsed JSON
tree - in the same way that JsonBuilder does not generate the
stringified version of the JSON tree it builds.
|
| |
|
|
| |
We should strive to make JsonBuilder and JsonReader similar in API.
|
|
|
JsonReader is a simple, cursor-based API for parsing a JSON DOM. It is
similar, in spirit, to the XmlReader API provided by various platforms
and XML parsing libraries.
|