Uses of Class
org.jooq.tools.json.ParseException
-
Uses of ParseException in org.jooq.tools.json
Modifier and TypeMethodDescriptionboolean
ContentHandler.endArray()
Receive notification of the end of a JSON array.void
ContentHandler.endJSON()
Receive notification of the end of JSON processing.boolean
ContentHandler.endObject()
Receive notification of the end of a JSON object.boolean
ContentHandler.endObjectEntry()
Receive notification of the end of the value of previous object entry.JSONParser.parse
(Reader in, ContainerFactory containerFactory) Parse JSON text into java object from the input source.void
JSONParser.parse
(Reader in, ContentHandler contentHandler) void
JSONParser.parse
(Reader in, ContentHandler contentHandler, boolean isResume) Stream processing of JSON text.JSONParser.parse
(String s, ContainerFactory containerFactory) void
JSONParser.parse
(String s, ContentHandler contentHandler) void
JSONParser.parse
(String s, ContentHandler contentHandler, boolean isResume) static Object
JSONValue.parseWithException
(Reader in) Parse JSON text into java object from the input source.static Object
JSONValue.parseWithException
(String s) boolean
Receive notification of the JSON primitive values: java.lang.String, java.lang.Number, java.lang.Boolean nullboolean
ContentHandler.startArray()
Receive notification of the beginning of a JSON array.void
ContentHandler.startJSON()
Receive notification of the beginning of JSON processing.boolean
ContentHandler.startObject()
Receive notification of the beginning of a JSON object.boolean
ContentHandler.startObjectEntry
(String key) Receive notification of the beginning of a JSON object entry.