Array | Represents a JSON Array |
ArrayEndEvent | The end of a JSON array, emitted when |
ArrayStartEvent | The start of a JSON array, emitted when |
Builder | |
Emitter | A |
Event | An event encountered when processing JSON data |
InvalidTypeException | Represents the failure of a type conversion. |
JsonArray | Alternative name for |
JsonObject | Alternative name for |
KeyEvent | A key encountered when processing JSON data |
LookAhead | A look-ahead buffer wrapping a stream |
NestingEvent | An |
Object | Represents a JSON Object |
ObjectEndEvent | The end of a JSON object/hash, emitted when |
ObjectStartEvent | The start of a JSON object/hash, emitted when |
ObjectValue | A JSON value, a |
ParseException | An Exception throw during parse errors |
Parser | A parser for JSON data presented as a Tokenizer which calls |
Positioned | Contract for stateful iterators, tokenizers etc which have the concept of a 'current position'. |
Printer | A JSON Printer |
StreamParser | A parser for JSON data as specified by RFC 7159 which produces a stream of Event to be handled by the caller. T |
StreamingVisitor | Produces a stream of events from the descendents of the given root value. |
StringEmitter | A JSON Emitter that prints to a |
StringParser | A parser for JSON data presented as a String which calls |
StringPrinter | A JSON Printer that prints to a |
StringTokenizer | An implementation of Tokenizer using a String |
Tokenizer | Contract for a tokenizer |
Value | A JSON value, a |
Visitor | Callable interface used when traversing JSON data. |
arrayEnd | The end of the current array encountered when processing JSON data |
arrayStart | The start of an array encountered when processing JSON data |
objectEnd | The end of the current object encountered when processing JSON data |
objectStart | The start of an object encountered when processing JSON data |
parse() | Parses a JSON string into a JSON value |
parseFalse() | Parse false, consuming any initial whitespace |
parseKeyOrString() | Parse a String literal, consuming any initial whitespace |
parseNull() | Parse null, consuming any initial whitespace |
parseNumber() | Parse a number, consuming any initial whitespace. |
parseTrue() | Parse true, consuming any initial whitespace |
streamToVisitor() | Calls a visitor according to the events obtained from a stream. |
visit() | Recursively visit the given subject using the given visitor. I |