|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JsonValue | |
---|---|
org.openjena.atlas.json | |
org.openjena.atlas.json.io |
Uses of JsonValue in org.openjena.atlas.json |
---|
Subclasses of JsonValue in org.openjena.atlas.json | |
---|---|
class |
JsonArray
|
class |
JsonBoolean
|
class |
JsonNull
|
class |
JsonNumber
|
class |
JsonObject
|
class |
JsonPrimitive
|
class |
JsonString
|
Methods in org.openjena.atlas.json that return JsonValue | |
---|---|
static JsonValue |
JsonAccess.access(JsonValue obj,
Object... path)
|
static JsonValue |
JsonAccess.accessPath(JsonValue obj,
String... path)
|
JsonValue |
JsonArray.get(int index)
|
JsonValue |
JsonObject.get(String key)
|
static JsonValue |
JSON.parseAny(InputStream input)
Parse any JSON value, not just an object, from an input stream |
static JsonValue |
JSON.parseAny(String string)
Parse any JSON value, not just an object, from a file |
JsonValue |
JsonObject.put(String key,
boolean b)
|
JsonValue |
JsonObject.put(String key,
JsonValue value)
|
JsonValue |
JsonObject.put(String key,
long value)
|
JsonValue |
JsonObject.put(String key,
String value)
|
static JsonValue |
JSON.readAny(String filename)
Read any JSON value, not just an object, from a file |
JsonValue |
JsonArray.remove(int index)
|
JsonValue |
JsonObject.remove(Object key)
|
JsonValue |
JsonArray.set(int index,
JsonValue element)
|
Methods in org.openjena.atlas.json that return types with arguments of type JsonValue | |
---|---|
Set<Map.Entry<String,JsonValue>> |
JsonObject.entrySet()
|
Iterator<JsonValue> |
JsonArray.iterator()
|
ListIterator<JsonValue> |
JsonArray.listIterator()
|
ListIterator<JsonValue> |
JsonArray.listIterator(int index)
|
List<JsonValue> |
JsonArray.subList(int fromIndex,
int toIndex)
|
Collection<JsonValue> |
JsonObject.values()
|
Methods in org.openjena.atlas.json with parameters of type JsonValue | |
---|---|
static JsonValue |
JsonAccess.access(JsonValue obj,
Object... path)
|
static JsonValue |
JsonAccess.accessPath(JsonValue obj,
String... path)
|
void |
JsonArray.add(int index,
JsonValue element)
|
boolean |
JsonArray.add(JsonValue e)
|
JsonValue |
JsonObject.put(String key,
JsonValue value)
|
JsonValue |
JsonArray.set(int index,
JsonValue element)
|
static void |
JSON.write(IndentedWriter output,
JsonValue jValue)
Write out a JSON value - pass a JSON Object to get legal exchangeable JSON |
static void |
JSON.write(JsonValue jValue)
Write out a JSON value to - pass a JSON Object to get legal exchangeable JSON |
static void |
JSON.write(OutputStream output,
JsonValue jValue)
Write out a JSON value - pass a JSON Object to get legal exchangeable JSON |
Method parameters in org.openjena.atlas.json with type arguments of type JsonValue | |
---|---|
boolean |
JsonArray.addAll(Collection<? extends JsonValue> c)
|
boolean |
JsonArray.addAll(int index,
Collection<? extends JsonValue> c)
|
void |
JsonObject.putAll(Map<? extends String,? extends JsonValue> m)
|
Uses of JsonValue in org.openjena.atlas.json.io |
---|
Methods in org.openjena.atlas.json.io that return JsonValue | |
---|---|
JsonValue |
JSONMaker.jsonValue()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |