Uses of Class
oracle.dbtools.plugin.api.json.JSONIOException
Packages that use JSONIOException
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 JSONIOException in oracle.dbtools.plugin.api.json
Methods in oracle.dbtools.plugin.api.json that throw JSONIOExceptionModifier 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 (}).booleanJSONReader.hasNext()Indicates if there any moreJSONTokens in the stream.JSONReader.next()Returns the nextJSONTokenin the stream.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 JSONIOException in oracle.dbtools.plugin.api.json.objects
Methods in oracle.dbtools.plugin.api.json.objects that throw JSONIOExceptionModifier and TypeMethodDescriptionJSONObjects.read(InputStream stream) Parse a byte stream into aJSONObjectorJSONArrayinstanceParse a character stream into aJSONObjectorJSONArrayinstanceParse a JSONToken stream into aJSONObjectorJSONArrayinstancevoidJSONObjects.write(OutputStream stream, Object objectGraph) Serialize any Java Object graph to it's textual representation.voidJSONObjects.write(OutputStream stream, JSONNode node) Serialize a JSON Object graph to it's textual representationvoidJSONObjects.write(Appendable stream, Object objectGraph) Serialize any Java Object graph to it's textual representation.voidJSONObjects.write(Appendable stream, JSONNode node) Serialize a JSON Object graph to it's textual representationvoidJSONObjects.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