接口 JSONVisitor
-
@Deprecated public interface JSONVisitor
已过时。JSONVisitor.
-
-
字段概要
字段 修饰符和类型 字段 说明 static StringCLASS_PROPERTY已过时。
-
方法概要
所有方法 实例方法 抽象方法 已过时的方法 修饰符和类型 方法 说明 voidarrayBegin()已过时。array begin.ObjectarrayEnd(int count)已过时。array end, return array value.voidarrayItem(int index)已过时。array item.voidarrayItemValue(int index, Object obj, boolean isValue)已过时。array item.voidbegin()已过时。parse begin .Objectend(Object obj, boolean isValue)已过时。parse end.voidobjectBegin()已过时。object begin.ObjectobjectEnd(int count)已过时。object end, return object value.voidobjectItem(String name)已过时。object property name.voidobjectItemValue(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
-
-