Uses of Interface
org.dashbuilder.json.JsonValue
-
-
Uses of JsonValue in org.dashbuilder.json
Classes in org.dashbuilder.json that implement JsonValue Modifier and Type Class Description classJsonArrayServer-side implementation of JsonArray.classJsonBooleanclassJsonNullServer-side implementation of JsonObject.classJsonNumberServer-side implementation of JsonNumber.classJsonObjectServer-side implementation of JsonObject.classJsonStringServer-side implementation of JsonString.Methods in org.dashbuilder.json with type parameters of type JsonValue Modifier and Type Method Description <T extends JsonValue>
TJsonFactory. parse(String jsonString)static <T extends JsonValue>
TJsonUtil. parse(String json)Methods in org.dashbuilder.json that return JsonValue Modifier and Type Method Description JsonValueJsonArray. get(int index)JsonValueJsonObject. get(String key)JsonValueJsonObject. getFirst(Collection<String> keys)Methods in org.dashbuilder.json with parameters of type JsonValue Modifier and Type Method Description voidJsonObject. put(String key, JsonValue value)voidJsonArray. set(int index, JsonValue value)voidJsonObject. set(String key, JsonValue value)static StringJsonUtil. stringify(JsonValue jsonValue)Converts a Json Object to Json format.static StringJsonUtil. stringify(JsonValue jsonValue, int spaces)Converts a JSO to Json format.static StringJsonUtil. stringify(JsonValue jsonValue, String indent)Converts a Json object to Json formatted String.
-