Package | Description |
---|---|
org.json.simple | |
org.json.simple.parser |
Modifier and Type | Method and Description |
---|---|
static Object |
JSONValue.parseWithException(Reader in)
Deprecated.
Parse JSON text into java object from the input source.
|
static Object |
JSONValue.parseWithException(String s)
Deprecated.
description omitted.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ContentHandler.endArray()
Deprecated.
Receive notification of the end of a JSON array.
|
void |
ContentHandler.endJSON()
Deprecated.
Receive notification of the end of JSON processing.
|
boolean |
ContentHandler.endObject()
Deprecated.
Receive notification of the end of a JSON object.
|
boolean |
ContentHandler.endObjectEntry()
Deprecated.
Receive notification of the end of the value of previous object entry.
|
Object |
JSONParser.parse(Reader in)
Deprecated.
description omitted.
|
Object |
JSONParser.parse(Reader in,
ContainerFactory containerFactory)
Deprecated.
Parse JSON text into java object from the input source.
|
void |
JSONParser.parse(Reader in,
ContentHandler contentHandler)
Deprecated.
description omitted.
|
void |
JSONParser.parse(Reader in,
ContentHandler contentHandler,
boolean isResume)
Deprecated.
Stream processing of JSON text.
|
Object |
JSONParser.parse(String s)
Deprecated.
description omitted.
|
Object |
JSONParser.parse(String s,
ContainerFactory containerFactory)
Deprecated.
description omitted.
|
void |
JSONParser.parse(String s,
ContentHandler contentHandler)
Deprecated.
description omitted.
|
void |
JSONParser.parse(String s,
ContentHandler contentHandler,
boolean isResume)
Deprecated.
description omitted.
|
boolean |
ContentHandler.primitive(Object value)
Deprecated.
Receive notification of the JSON primitive values:
java.lang.String,
java.lang.Number,
java.lang.Boolean
null
|
boolean |
ContentHandler.startArray()
Deprecated.
Receive notification of the beginning of a JSON array.
|
void |
ContentHandler.startJSON()
Deprecated.
Receive notification of the beginning of JSON processing.
|
boolean |
ContentHandler.startObject()
Deprecated.
Receive notification of the beginning of a JSON object.
|
boolean |
ContentHandler.startObjectEntry(String key)
Deprecated.
Receive notification of the beginning of a JSON object entry.
|
Apache Camel