Package | Description |
---|---|
net.minidev.json | |
net.minidev.json.parser |
Modifier and Type | Method and Description |
---|---|
static Object |
JSONValue.parseStrict(byte[] s)
Parse valid RFC4627 JSON text into java object from the input source.
|
static Object |
JSONValue.parseStrict(byte[] s,
int offset,
int length)
Parse valid RFC4627 JSON text into java object from the input source.
|
static Object |
JSONValue.parseStrict(InputStream in)
Parse valid RFC4627 JSON text into java object from the input source.
|
static Object |
JSONValue.parseStrict(Reader in)
Parse valid RFC4627 JSON text into java object from the input source.
|
static Object |
JSONValue.parseStrict(String s)
Parse valid RFC4627 JSON text into java object from the input source.
|
static Object |
JSONValue.parseWithException(byte[] in)
Parse JSON text into java object from the input source.
|
static Object |
JSONValue.parseWithException(byte[] in,
int offset,
int length)
Parse JSON text into java object from the input source.
|
static Object |
JSONValue.parseWithException(InputStream in)
Parse JSON text into java object from the input source.
|
static Object |
JSONValue.parseWithException(Reader in)
Parse JSON text into java object from the input source.
|
static Object |
JSONValue.parseWithException(String s)
Parse JSON text into java object from the input source.
|
static void |
JSONValue.SAXParse(InputStream input,
ContentHandler handler)
Parse Json Using SAX event handler
|
static void |
JSONValue.SAXParse(Reader input,
ContentHandler handler)
Parse Json Using SAX event handler
|
static void |
JSONValue.SAXParse(String input,
ContentHandler handler)
Parse Json Using SAX event handler
|
Modifier and Type | Method and Description |
---|---|
boolean |
ContentHandlerCompressor.endArray() |
boolean |
ContentHandler.endArray()
Receive notification of the end of a JSON array.
|
boolean |
ContentHandlerDumy.endArray() |
void |
ContentHandlerCompressor.endJSON() |
void |
ContentHandler.endJSON()
Receive notification of the end of JSON processing.
|
void |
ContentHandlerDumy.endJSON() |
boolean |
ContentHandlerCompressor.endObject() |
boolean |
ContentHandler.endObject()
Receive notification of the end of a JSON object.
|
boolean |
ContentHandlerDumy.endObject() |
boolean |
ContentHandlerCompressor.endObjectEntry() |
boolean |
ContentHandler.endObjectEntry()
Receive notification of the end of the value of previous object entry.
|
boolean |
ContentHandlerDumy.endObjectEntry() |
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,
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(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(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) |
boolean |
ContentHandlerCompressor.primitive(Object value) |
boolean |
ContentHandler.primitive(Object value)
Receive notification of the JSON primitive values: java.lang.String,
java.lang.Number, java.lang.Boolean null
|
boolean |
ContentHandlerDumy.primitive(Object value) |
boolean |
ContentHandlerCompressor.startArray() |
boolean |
ContentHandler.startArray()
Receive notification of the beginning of a JSON array.
|
boolean |
ContentHandlerDumy.startArray() |
void |
ContentHandlerCompressor.startJSON() |
void |
ContentHandler.startJSON()
Receive notification of the beginning of JSON processing.
|
void |
ContentHandlerDumy.startJSON() |
boolean |
ContentHandlerCompressor.startObject() |
boolean |
ContentHandler.startObject()
Receive notification of the beginning of a JSON object.
|
boolean |
ContentHandlerDumy.startObject() |
boolean |
ContentHandlerCompressor.startObjectEntry(String key) |
boolean |
ContentHandler.startObjectEntry(String key)
Receive notification of the beginning of a JSON object entry.
|
boolean |
ContentHandlerDumy.startObjectEntry(String key) |
Copyright © 2013 Chemouni Uriel. All Rights Reserved.