Uses of Class
org.apache.jena.atlas.json.JsonValue
-
Packages that use JsonValue Package Description org.apache.jena.atlas.json org.apache.jena.atlas.json.io org.apache.jena.sparql.lib -
-
Uses of JsonValue in org.apache.jena.atlas.json
Subclasses of JsonValue in org.apache.jena.atlas.json Modifier and Type Class Description classJsonArrayclassJsonBooleanclassJsonNullclassJsonNumberclassJsonObjectclassJsonPrimitiveclassJsonStringMethods in org.apache.jena.atlas.json that return JsonValue Modifier and Type Method Description static JsonValueJsonAccess. access(JsonValue obj, java.lang.Object... path)static JsonValueJsonAccess. accessPath(JsonValue obj, java.lang.String... path)JsonValueJsonBuilder. build()static JsonValueJSON. copy(JsonValue arg)Create a safe copy of aJsonValue.static JsonValueJsonBuilder. copy(JsonValue arg)Create a safe copy of aJsonValue.JsonValueJsonArray. get(int index)JsonValueJsonObject. get(java.lang.String key)static JsonValueJSON. parseAny(java.io.InputStream input)Parse any JSON value, not just an object, from an input streamstatic JsonValueJSON. parseAny(java.lang.String string)Parse any JSON value, not just an object, from a fileJsonValueJsonObject. put(java.lang.String key, boolean b)JsonValueJsonObject. put(java.lang.String key, long value)JsonValueJsonObject. put(java.lang.String key, java.lang.String value)JsonValueJsonObject. put(java.lang.String key, JsonValue value)static JsonValueJSON. readAny(java.lang.String filename)Read any JSON value, not just an object, from a fileJsonValueJsonArray. remove(int index)JsonValueJsonObject. remove(java.lang.Object key)JsonValueJsonArray. set(int index, JsonValue element)Methods in org.apache.jena.atlas.json that return types with arguments of type JsonValue Modifier and Type Method Description java.util.Set<java.util.Map.Entry<java.lang.String,JsonValue>>JsonObject. entrySet()java.util.stream.Stream<JsonValue>JsonObject. getArray(java.lang.String key)For walking structuresjava.util.Iterator<JsonValue>JsonObject. getIterator(java.lang.String key)For walking structuresjava.util.Iterator<JsonValue>JsonArray. iterator()java.util.ListIterator<JsonValue>JsonArray. listIterator()java.util.ListIterator<JsonValue>JsonArray. listIterator(int index)java.util.List<JsonValue>JsonArray. subList(int fromIndex, int toIndex)java.util.Collection<JsonValue>JsonObject. values()Methods in org.apache.jena.atlas.json with parameters of type JsonValue Modifier and Type Method Description static JsonValueJsonAccess. access(JsonValue obj, java.lang.Object... path)static JsonValueJsonAccess. accessPath(JsonValue obj, java.lang.String... path)voidJsonArray. add(int index, JsonValue element)booleanJsonArray. add(JsonValue e)static JsonValueJSON. copy(JsonValue arg)Create a safe copy of aJsonValue.static JsonValueJsonBuilder. copy(JsonValue arg)Create a safe copy of aJsonValue.static JsonBuilderJsonBuilder. createFrom(JsonValue arg)Create a builder from aJsonValue.JsonBuilderJsonBuilder. pair(java.lang.String key, JsonValue value)JsonValueJsonObject. put(java.lang.String key, JsonValue value)JsonValueJsonArray. set(int index, JsonValue element)static java.lang.StringJSON. toString(JsonValue jValue)JsonValue to a formatted, multiline stringstatic java.lang.StringJSON. toStringFlat(JsonValue jValue)JsonValue to a string with no newlinesJsonBuilderJsonBuilder. value(JsonValue v)static voidJSON. write(java.io.OutputStream output, JsonValue jValue)Write out a JSON value - pass a JSON Object to get legal exchangeable JSONstatic voidJSON. write(org.apache.jena.atlas.io.IndentedWriter output, JsonValue jValue)Write out a JSON value - pass a JSON Object to get legal exchangeable JSONstatic voidJSON. write(JsonValue jValue)Write out a JSON value - pass a JSON Object to get legal exchangeable JSONMethod parameters in org.apache.jena.atlas.json with type arguments of type JsonValue Modifier and Type Method Description booleanJsonArray. addAll(int index, java.util.Collection<? extends JsonValue> c)booleanJsonArray. addAll(java.util.Collection<? extends JsonValue> c)voidJsonObject. forEach(java.util.function.BiConsumer<java.lang.String,JsonValue> action)voidJsonObject. putAll(java.util.Map<? extends java.lang.String,? extends JsonValue> m) -
Uses of JsonValue in org.apache.jena.atlas.json.io
Methods in org.apache.jena.atlas.json.io that return JsonValue Modifier and Type Method Description JsonValueJSONMaker. jsonValue() -
Uses of JsonValue in org.apache.jena.sparql.lib
Methods in org.apache.jena.sparql.lib that return JsonValue Modifier and Type Method Description static JsonValueRDFTerm2Json. fromNode(Node node)
-