Uses of Interface
net.minidev.json.parser.ContentHandler
-
Packages that use ContentHandler Package Description net.minidev.json net.minidev.json.parser -
-
Uses of ContentHandler in net.minidev.json
Methods in net.minidev.json with parameters of type ContentHandler Modifier and Type Method Description static void
JSONValue. SAXParse(InputStream input, ContentHandler handler)
Parse Json Using SAX event handlerstatic void
JSONValue. SAXParse(Reader input, ContentHandler handler)
Parse Json Using SAX event handlerstatic void
JSONValue. SAXParse(String input, ContentHandler handler)
Parse Json Using SAX event handler -
Uses of ContentHandler in net.minidev.json.parser
Classes in net.minidev.json.parser that implement ContentHandler Modifier and Type Class Description class
ContentHandlerCompressor
class
ContentHandlerDumy
Methods in net.minidev.json.parser with parameters of type ContentHandler Modifier and Type Method Description Object
JSONParser. parse(byte[] in, int offset, int length, ContainerFactory containerFactory, ContentHandler handler)
Object
JSONParser. parse(byte[] in, ContainerFactory containerFactory, ContentHandler handler)
Object
JSONParser. parse(InputStream in, ContainerFactory containerFactory, ContentHandler handler)
use to return Primitive Type, or String, Or JsonObject or JsonArray generated by a ContainerFactoryObject
JSONParser. parse(Reader in, ContainerFactory containerFactory, ContentHandler handler)
use to return Primitive Type, or String, Or JsonObject or JsonArray generated by a ContainerFactoryObject
JSONParser. parse(String in, ContainerFactory containerFactory, ContentHandler handler)
-