
delight.json.JSONArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-json Show documentation
Show all versions of delight-json Show documentation
Rendering of simple, human-readable JSON documents.
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