| Package | Description |
|---|---|
| it.riccardotraverso.json |
| Modifier and Type | Class and Description |
|---|---|
class |
JSONArray<J extends JSON> |
| Modifier and Type | Class and Description |
|---|---|
class |
JSONArray<J extends JSON> |
class |
JSONBoolean |
class |
JSONInteger |
class |
JSONObject |
class |
JSONString |
| Modifier and Type | Method and Description |
|---|---|
JSON |
JSONObject.getPropertyValue(java.lang.String propertyName)
Returns the value associated to a given property.
|
JSON |
JSONObject.Property.getValue() |
JSON |
JSONArray.getValue(int index)
Returns an element at a given index.
|
| Modifier and Type | Method and Description |
|---|---|
JSONObject |
JSONObject.setProperty(java.lang.String name,
JSON value)
Sets the value of a given property, eventually creating it when not
present.
|
void |
JSONObject.Property.setValue(JSON value) |
| Modifier and Type | Method and Description |
|---|---|
void |
JSONVisitor.enterJSONArray(JSONArray<? extends JSON> arr) |
void |
JSONPrettyPrint.enterJSONArray(JSONArray<? extends JSON> arr) |
void |
JSONAbstractVisitor.enterJSONArray(JSONArray<? extends JSON> arr) |
void |
JSONVisitor.exitJSONArray(JSONArray<? extends JSON> arr) |
void |
JSONPrettyPrint.exitJSONArray(JSONArray<? extends JSON> arr) |
void |
JSONAbstractVisitor.exitJSONArray(JSONArray<? extends JSON> arr) |
| Constructor and Description |
|---|
JSONObject.Property(java.lang.String name,
JSON value)
Creates a new Property for a JSONObject.
|