All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.json.ValueVisitor Maven / Gradle / Ivy

Go to download

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy