net.sf.json.ValueVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-lib Show documentation
Show all versions of json-lib Show documentation
Java library for transforming beans, maps, collections, java
arrays and XML to JSON.
The newest version!
package net.sf.json;
/**
* @author Kohsuke Kawaguchi
*/
public abstract class ValueVisitor {
public abstract V acceptNull();
public abstract V accept(JSONFunction f);
public abstract V accept(JSONString s);
public abstract V accept(Number n);
public abstract V accept(Boolean b);
public abstract V accept(JSONObject o);
public abstract V accept(JSONArray a);
}