接口 JSONVisitor


  • public interface JSONVisitor
    已过时。
    JSONVisitor.
    • 字段概要

      字段 
      修饰符和类型 字段 说明
      static CLASS_PROPERTY
      已过时。
       
    • 方法概要

      所有方法 实例方法 抽象方法 已过时的方法 
      修饰符和类型 方法 说明
      void arrayBegin()
      已过时。
      array begin.
      arrayEnd​(int count)
      已过时。
      array end, return array value.
      void arrayItem​(int index)
      已过时。
      array item.
      void arrayItemValue​(int index,  obj, boolean isValue)
      已过时。
      array item.
      void begin()
      已过时。
      parse begin .
       obj, boolean isValue)
      已过时。
      parse end.
      void objectBegin()
      已过时。
      object begin.
      objectEnd​(int count)
      已过时。
      object end, return object value.
      void  name)
      已过时。
      object property name.
      void  obj, boolean isValue)
      已过时。
      object property value.
    • 字段详细资料

      • CLASS_PROPERTY

        static final  CLASS_PROPERTY
        已过时。
        另请参阅:
        常量字段值
    • 方法详细资料

      • begin

        void begin()
        已过时。
        parse begin .
      • end

         end​( obj,
                   boolean isValue)
            throws ParseException
        已过时。
        parse end.
        参数:
        obj - root obj.
        isValue - is json value.
        返回:
        parse result.
        抛出:
        ParseException
      • objectEnd

         objectEnd​(int count)
                  throws ParseException
        已过时。
        object end, return object value.
        参数:
        count - property count.
        返回:
        object value.
        抛出:
        ParseException
      • objectItem

        void objectItem​( name)
                 throws ParseException
        已过时。
        object property name.
        参数:
        name - name.
        抛出:
        ParseException
      • objectItemValue

        void objectItemValue​( obj,
                             boolean isValue)
                      throws ParseException
        已过时。
        object property value.
        参数:
        obj - obj.
        isValue - is json value.
        抛出:
        ParseException
      • arrayEnd

         arrayEnd​(int count)
                 throws ParseException
        已过时。
        array end, return array value.
        参数:
        count - count.
        返回:
        array value.
        抛出:
        ParseException
      • arrayItemValue

        void arrayItemValue​(int index,
                             obj,
                            boolean isValue)
                     throws ParseException
        已过时。
        array item.
        参数:
        index - index.
        obj - item.
        isValue - is json value.
        抛出:
        ParseException