接口 JSONVisitor
-
@Deprecated public interface JSONVisitor
已过时。JSONVisitor.
-
-
字段概要
字段 修饰符和类型 字段 说明 static String
CLASS_PROPERTY
已过时。
-
方法概要
所有方法 实例方法 抽象方法 已过时的方法 修饰符和类型 方法 说明 void
arrayBegin()
已过时。array begin.Object
arrayEnd(int count)
已过时。array end, return array value.void
arrayItem(int index)
已过时。array item.void
arrayItemValue(int index, Object obj, boolean isValue)
已过时。array item.void
begin()
已过时。parse begin .Object
end(Object obj, boolean isValue)
已过时。parse end.void
objectBegin()
已过时。object begin.Object
objectEnd(int count)
已过时。object end, return object value.void
objectItem(String name)
已过时。object property name.void
objectItemValue(Object obj, boolean isValue)
已过时。object property value.
-
-
-
方法详细资料
-
begin
void begin()
已过时。parse begin .
-
end
Object end(Object obj, boolean isValue) throws ParseException
已过时。parse end.- 参数:
obj
- root obj.isValue
- is json value.- 返回:
- parse result.
- 抛出:
ParseException
-
objectBegin
void objectBegin() throws ParseException
已过时。object begin.- 抛出:
ParseException
-
objectEnd
Object objectEnd(int count) throws ParseException
已过时。object end, return object value.- 参数:
count
- property count.- 返回:
- object value.
- 抛出:
ParseException
-
objectItem
void objectItem(String name) throws ParseException
已过时。object property name.- 参数:
name
- name.- 抛出:
ParseException
-
objectItemValue
void objectItemValue(Object obj, boolean isValue) throws ParseException
已过时。object property value.- 参数:
obj
- obj.isValue
- is json value.- 抛出:
ParseException
-
arrayBegin
void arrayBegin() throws ParseException
已过时。array begin.- 抛出:
ParseException
-
arrayEnd
Object arrayEnd(int count) throws ParseException
已过时。array end, return array value.- 参数:
count
- count.- 返回:
- array value.
- 抛出:
ParseException
-
arrayItem
void arrayItem(int index) throws ParseException
已过时。array item.- 参数:
index
- index.- 抛出:
ParseException
-
arrayItemValue
void arrayItemValue(int index, Object obj, boolean isValue) throws ParseException
已过时。array item.- 参数:
index
- index.obj
- item.isValue
- is json value.- 抛出:
ParseException
-
-