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

delight.json.JSONArray Maven / Gradle / Ivy

The newest version!
package delight.json;

public abstract class JSONArray extends JSON {

    public abstract JSONArray push(Object value);

    /**
     * 
     * @return The rendered string representation of this JSON array.
     */
    @Override
    public abstract String render();

    /**
     * 
     * @param indentSize
     *            Defines how many spaces are to be inserted at the beginning of
     *            ever line.
     * @return The rendered string representation of this JSON array.
     */
    @Override
    public abstract String render(int indentSize);

    /**
     * 

* Prints this array to standard out. */ @Override public abstract void print(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy