public class SimpleContentHandler extends Object implements ContentHandler
| Constructor and Description | 
|---|
| SimpleContentHandler() | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | endArray()Receive notification of the end of a JSON array. | 
| void | endJSON()Receive notification of the end of JSON processing. | 
| boolean | endObject()Receive notification of the end of a JSON object. | 
| boolean | endObjectEntry()Receive notification of the end of the value of previous object entry. | 
| Object | getResult() | 
| boolean | primitive(Object value)Receive notification of the JSON primitive values:
        java.lang.String,
        java.lang.Number,
        java.lang.Boolean
        null | 
| boolean | startArray()Receive notification of the beginning of a JSON array. | 
| void | startJSON()Receive notification of the beginning of JSON processing. | 
| boolean | startObject()Receive notification of the beginning of a JSON object. | 
| boolean | startObjectEntry(String key)Receive notification of the beginning of a JSON object entry. | 
public void startJSON()
               throws ParseException,
                      IOException
ContentHandlerstartJSON in interface ContentHandlerParseException - - JSONParser will stop and throw the same exception to the caller when receiving this exception.IOExceptionpublic void endJSON()
             throws ParseException,
                    IOException
ContentHandlerendJSON in interface ContentHandlerParseExceptionIOExceptionpublic boolean startObject()
                    throws ParseException,
                           IOException
ContentHandlerstartObject in interface ContentHandlerParseException - - JSONParser will stop and throw the same exception to the caller when receiving this exception.IOExceptionContentHandler.endJSON()public boolean endObject()
                  throws ParseException,
                         IOException
ContentHandlerendObject in interface ContentHandlerParseExceptionIOExceptionContentHandler.startObject()public boolean startObjectEntry(String key) throws ParseException, IOException
ContentHandlerstartObjectEntry in interface ContentHandlerkey - - Key of a JSON object entry.ParseExceptionIOExceptionContentHandler.endObjectEntry()public boolean endObjectEntry()
                       throws ParseException,
                              IOException
ContentHandlerendObjectEntry in interface ContentHandlerParseExceptionIOExceptionContentHandler.startObjectEntry(java.lang.String)public boolean startArray()
                   throws ParseException,
                          IOException
ContentHandlerstartArray in interface ContentHandlerParseExceptionIOExceptionContentHandler.endArray()public boolean endArray()
                 throws ParseException,
                        IOException
ContentHandlerendArray in interface ContentHandlerParseExceptionIOExceptionContentHandler.startArray()public boolean primitive(Object value) throws ParseException, IOException
ContentHandlerprimitive in interface ContentHandlervalue - - Instance of the following:
                        java.lang.String,
                        java.lang.Number,
                        java.lang.Boolean
                        nullParseExceptionIOExceptionpublic Object getResult()
Copyright © 2019. All rights reserved.