void |
JSONParserBase.checkControleChar() |
|
void |
JSONParserBase.checkLeadinZero() |
|
boolean |
ContentHandler.endArray() |
Receive notification of the end of a JSON array.
|
boolean |
ContentHandlerCompressor.endArray() |
|
boolean |
ContentHandlerDumy.endArray() |
|
void |
ContentHandler.endJSON() |
Receive notification of the end of JSON processing.
|
void |
ContentHandlerCompressor.endJSON() |
|
void |
ContentHandlerDumy.endJSON() |
|
boolean |
ContentHandler.endObject() |
Receive notification of the end of a JSON object.
|
boolean |
ContentHandlerCompressor.endObject() |
|
boolean |
ContentHandlerDumy.endObject() |
|
boolean |
ContentHandler.endObjectEntry() |
Receive notification of the end of the value of previous object entry.
|
boolean |
ContentHandlerCompressor.endObjectEntry() |
|
boolean |
ContentHandlerDumy.endObjectEntry() |
|
protected Number |
JSONParserBase.extractFloat() |
|
Object |
JSONParser.parse(byte[] in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(byte[] in,
int offset,
int length) |
|
Object |
JSONParser.parse(byte[] in,
int offset,
int length,
ContainerFactory containerFactory) |
|
Object |
JSONParser.parse(byte[] in,
int offset,
int length,
ContainerFactory containerFactory,
ContentHandler handler) |
|
Object |
JSONParser.parse(byte[] in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(byte[] in,
ContainerFactory containerFactory,
ContentHandler handler) |
|
Object |
JSONParser.parse(InputStream in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(InputStream in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(InputStream in,
ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(Reader in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(Reader in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(Reader in,
ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(String in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(String in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParser.parse(String in,
ContainerFactory containerFactory,
ContentHandler handler) |
|
protected Object |
JSONParserBase.parse(ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserByteArray.parse(byte[] in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserByteArray.parse(byte[] in,
int offset,
int length,
ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
Processing from offset position until length
|
Object |
JSONParserByteArray.parse(byte[] in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserByteArray.parse(byte[] in,
ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserInputStream.parse(InputStream in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserInputStream.parse(InputStream in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserInputStream.parse(InputStream in,
ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserReader.parse(Reader in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserReader.parse(Reader in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserReader.parse(Reader in,
ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserString.parse(String in) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserString.parse(String in,
ContainerFactory containerFactory) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
Object |
JSONParserString.parse(String in,
ContainerFactory containerFactory,
ContentHandler handler) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
protected Number |
JSONParserBase.parseNumber(String s) |
|
boolean |
ContentHandler.primitive(Object value) |
Receive notification of the JSON primitive values: java.lang.String,
java.lang.Number, java.lang.Boolean null
|
boolean |
ContentHandlerCompressor.primitive(Object value) |
|
boolean |
ContentHandlerDumy.primitive(Object value) |
|
protected List<Object> |
JSONParserBase.readArray() |
|
protected Object |
JSONParserBase.readMain(boolean[] stop) |
use to return Primitive Type, or String, Or JsonObject or JsonArray
generated by a ContainerFactory
|
protected abstract void |
JSONParserBase.readNoEnd() |
|
protected void |
JSONParserByteArray.readNoEnd() |
|
protected void |
JSONParserReader.readNoEnd() |
|
protected void |
JSONParserString.readNoEnd() |
read data can not be EOI
|
protected abstract Object |
JSONParserBase.readNumber(boolean[] stop) |
|
protected Object |
JSONParserMemory.readNumber(boolean[] stop) |
|
protected Object |
JSONParserStream.readNumber(boolean[] stop) |
|
protected Map<String,Object> |
JSONParserBase.readObject() |
|
protected abstract void |
JSONParserBase.readString() |
|
protected void |
JSONParserMemory.readString() |
|
protected void |
JSONParserStream.readString() |
|
protected void |
JSONParserBase.readString2() |
|
protected char |
JSONParserBase.readUnicode(int totalChars) |
|
boolean |
ContentHandler.startArray() |
Receive notification of the beginning of a JSON array.
|
boolean |
ContentHandlerCompressor.startArray() |
|
boolean |
ContentHandlerDumy.startArray() |
|
void |
ContentHandler.startJSON() |
Receive notification of the beginning of JSON processing.
|
void |
ContentHandlerCompressor.startJSON() |
|
void |
ContentHandlerDumy.startJSON() |
|
boolean |
ContentHandler.startObject() |
Receive notification of the beginning of a JSON object.
|
boolean |
ContentHandlerCompressor.startObject() |
|
boolean |
ContentHandlerDumy.startObject() |
|
boolean |
ContentHandler.startObjectEntry(String key) |
Receive notification of the beginning of a JSON object entry.
|
boolean |
ContentHandlerCompressor.startObjectEntry(String key) |
|
boolean |
ContentHandlerDumy.startObjectEntry(String key) |
|