| Package | Description |
|---|---|
| oracle.dbtools.plugin.api.json |
JavaScript Object Notation (JSON) APIs for reading and writing JSON character streams.
|
| oracle.dbtools.plugin.api.json.objects |
API for creating in memory representations of JSON object graphs (
JSONObjects) and for serializing object graphs to JSON representations. |
| Modifier and Type | Method and Description |
|---|---|
JSONToken |
JSONReader.next()
Returns the next
JSONToken in the stream. |
| Modifier and Type | Method and Description |
|---|---|
JSONWriter |
JSONWriter.append(JSONToken token)
Write a
JSONToken instance to the stream. |
| Modifier and Type | Method and Description |
|---|---|
InputStream |
JSONStreams.inputStream(Iterator<JSONToken> reader)
Produce an
InputStream on the fly from the specified JSONToken event stream |
| Modifier and Type | Method and Description |
|---|---|
JSONNode |
JSONObjects.read(Iterator<JSONToken> stream)
Parse a JSONToken stream into a
JSONObject or JSONArray instance |