Uses of Interface
oracle.dbtools.plugin.api.json.JSONWriter
Packages that use JSONWriter
Package
Description
JavaScript Object Notation (JSON) APIs for reading and writing JSON character streams.
API for creating in memory representations of JSON object graphs
(
JSONObjects) and for
serializing object graphs to JSON representations.-
Uses of JSONWriter in oracle.dbtools.plugin.api.json
Methods in oracle.dbtools.plugin.api.json that return JSONWriterModifier and TypeMethodDescriptionWrite aJSONTokeninstance to the stream.JSONWriter.endArray()End an array, emit the closing square bracket (]).JSONWriter.endObject()End an object, emit the closing brace (}).JSONWriter.graftChildren(boolean setting) Grafts the properties of the child objects onto the current object inside of creating a new level.JSONStreams.jsonWriter(OutputStream stream) Wrap the specified byte stream in aJSONWriterinstance.JSONStreams.jsonWriter(Appendable stream) Wrap the specified character stream in aJSONWriterinstance.JSONWriter.nullValue()Emit a null property value.JSONWriter.property(String name, CharSequence value) Emit a property with a textual value.JSONWriter.propertyName(String name) Emit the name of a propertyJSONWriter.startArray()Start an array, emit the opening square bracket([)JSONWriter.startObject()Start an object, emit the opening brace ({).Emit a boolean value, mapping it to the unquoted values:trueorfalseJSONWriter.value(CharSequence value) Emit a textual value, quoting and escaping the stringEmit a numeric value.Emit a textual value, quoting and escaping the string. -
Uses of JSONWriter in oracle.dbtools.plugin.api.json.objects
Methods in oracle.dbtools.plugin.api.json.objects with parameters of type JSONWriterModifier and TypeMethodDescriptionvoidJSONObjects.write(JSONWriter stream, Object objectGraph) Serialize any Java Object graph to aJSONWriterstream.voidJSONObjects.write(JSONWriter stream, JSONNode node) Serialize a JSON Object graph to aJSONWriterstream