Uses of Class
jsonvalues.JsParserException
Packages that use JsParserException
Package
Description
The `jsonvalues` package provides a set of classes and interfaces for working with JSON (JavaScript Object Notation) data in a type-safe and structured manner.
The `jsonvalues.spec` package provides classes and interfaces for defining and working with JSON specifications (specs) and parsers.
-
Uses of JsParserException in jsonvalues
Methods in jsonvalues that return JsParserExceptionMethods in jsonvalues that throw JsParserExceptionModifier and TypeMethodDescriptionstatic JsArray
JsArray.parse
(byte[] bytes) Parses a JSON array represented as a byte array and returns a newJsArray
instance.static JsArray
Parses a JSON array represented as a string and returns a newJsArray
instance.static JsObj
JsObj.parse
(byte[] bytes) Parses the given array of bytes into an immutable and persistent JSON object.static JsObj
Parses the given string into an immutable and persistent JSON object. -
Uses of JsParserException in jsonvalues.spec
Methods in jsonvalues.spec that throw JsParserExceptionModifier and TypeMethodDescriptionJsIO.createReader
(InputStream is) Creates a JSON reader from an input stream.byte
JsReader.readNextToken()
Read next token (byte) from input JSON.default JsValue
JsSpec.readNextValue
(JsReader reader) Low-level method to parse a JSON value token by token from a reader.