Module org.jooq

Interface ContentHandler


public interface ContentHandler
A simplified and stoppable SAX-like content handler for stream processing of JSON text.
Author:
FangYidong<fangyidong@yahoo.com.cn>
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Receive notification of the end of a JSON array.
    void
    Receive notification of the end of JSON processing.
    boolean
    Receive notification of the end of a JSON object.
    boolean
    Receive notification of the end of the value of previous object entry.
    boolean
    Receive notification of the JSON primitive values: java.lang.String, java.lang.Number, java.lang.Boolean null
    boolean
    Receive notification of the beginning of a JSON array.
    void
    Receive notification of the beginning of JSON processing.
    boolean
    Receive notification of the beginning of a JSON object.
    boolean
    Receive notification of the beginning of a JSON object entry.