Package de.unkrig.commons.text.json

JSON-related functionality.

See:
          Description

Interface Summary
Json.Value Base for a JSON value.
Json.ValueVisitor Interface for the implementation of the 'visitor' pattern for a JSON value.
 

Class Summary
Json The JSON DOM as defined on json.org.
Json.Array Representation of a JSON 'array'.
Json.False Representation of a JSON 'false' literal.
Json.Member Representation of a member of an Json.ObjecT.
Json.Null Representation of a JSON 'null' literal.
Json.NumbeR Representation of a JSON 'number'.
Json.ObjecT Representation of a JSON 'object'.
Json.StrinG Representation of a JSON 'string'.
Json.True Representation of a JSON 'true' literal.
JsonParser Parser for a 'parametrized value' of an HTTP header like: Content-Type: text/plain; charset=ASCII 'text/plain' is the so-called 'token', 'char=ASCII' is a so-called 'parameter'.
JsonScanner A JASON scanner; scans tokens as defined on json.org.
JsonUnparseVisitor A Json.ValueVisitor which prints a JSON value nicely formatted to a PrintWriter.
 

Enum Summary
JsonScanner.TokenType Representation of the type of a token.
 

Package de.unkrig.commons.text.json Description

JSON-related functionality.

See http://json.org.