public class JSONAbstractVisitor extends java.lang.Object implements JSONVisitor
| Constructor and Description | 
|---|
| JSONAbstractVisitor() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | enterJSONArray(JSONArray<? extends JSON> arr) | 
| void | enterJSONObject(JSONObject obj) | 
| void | exitJSONArray(JSONArray<? extends JSON> arr) | 
| void | exitJSONObject(JSONObject obj) | 
| void | visitJSONBoolean(JSONBoolean el) | 
| void | visitJSONInteger(JSONInteger el) | 
| void | visitJSONProperty(JSONObject.Property prop) | 
| void | visitJSONString(JSONString el) | 
public void enterJSONArray(JSONArray<? extends JSON> arr)
enterJSONArray in interface JSONVisitorpublic void exitJSONArray(JSONArray<? extends JSON> arr)
exitJSONArray in interface JSONVisitorpublic void enterJSONObject(JSONObject obj)
enterJSONObject in interface JSONVisitorpublic void exitJSONObject(JSONObject obj)
exitJSONObject in interface JSONVisitorpublic void visitJSONString(JSONString el)
visitJSONString in interface JSONVisitorpublic void visitJSONInteger(JSONInteger el)
visitJSONInteger in interface JSONVisitorpublic void visitJSONBoolean(JSONBoolean el)
visitJSONBoolean in interface JSONVisitorpublic void visitJSONProperty(JSONObject.Property prop)
visitJSONProperty in interface JSONVisitor