Interface JSONContentHandler


public interface JSONContentHandler
A simplified and stoppable SAX-like content handler for stream processing of JSON text.
Since:
1.0.0
Version:
1.0.0
Author:
FangYidong(fangyidong@yahoo.com.cn)
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Receives a notification when a JSON array ends.
    void
    Receives a notification when the JSON processing ends.
    boolean
    Receives a notification when a JSON object ends.
    boolean
    Receives a notification when a JSON entry ends.
    boolean
    Receives a notification when a primitive JSON value is reached: String Number Boolean null
    boolean
    Receives a notification when a JSON array begins.
    void
    Receives a notification when the JSON processing begins.
    boolean
    Receives a notification when a JSON object begins.
    boolean
    Receives a notification when a JSON object entry begins.