| Modifier and Type | Field and Description |
|---|---|
JsonValue |
JsonValue.child
May be null.
|
JsonValue |
JsonValue.next
May be null.
|
JsonValue |
JsonValue.prev
May be null.
|
| Modifier and Type | Method and Description |
|---|---|
JsonValue |
JsonValue.child()
Returns the first child for this object or array.
|
JsonValue |
JsonValue.get(int index)
Returns the child at the specified index.
|
JsonValue |
JsonValue.get(String name)
Returns the child with the specified name.
|
JsonValue |
JsonValue.getChild(String name)
Finds the child with the specified name and returns its first child.
|
JsonValue |
JsonValue.next()
Returns the next sibling of this value.
|
JsonValue |
JsonValue.JsonIterator.next() |
JsonValue |
JsonReader.parse(char[] data,
int offset,
int length) |
JsonValue |
JsonReader.parse(File file) |
JsonValue |
JsonReader.parse(InputStream input) |
JsonValue |
JsonReader.parse(Reader reader) |
JsonValue |
JsonReader.parse(String json) |
JsonValue |
JsonValue.prev()
Returns the previous sibling of this value.
|
JsonValue |
JsonValue.remove(int index)
Removes the child with the specified index.
|
JsonValue |
JsonValue.remove(String name)
Removes the child with the specified name.
|
JsonValue |
JsonValue.require(int index)
Returns the child at the specified index.
|
JsonValue |
JsonValue.require(String name)
Returns the child with the specified name.
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<JsonValue> |
JsonValue.JsonIterator.iterator() |
| Modifier and Type | Method and Description |
|---|---|
void |
JsonSerializable.read(Json json,
JsonValue jsonData) |
T |
JsonSerializer.read(Json json,
JsonValue jsonData,
Class type) |
abstract T |
ReadOnlySerializer.read(Json json,
JsonValue jsonData,
Class type) |
void |
Json.readField(Object object,
String name,
Class elementType,
JsonValue jsonData) |
void |
Json.readField(Object object,
String name,
JsonValue jsonData) |
void |
Json.readField(Object object,
String fieldName,
String jsonName,
Class elementType,
JsonValue jsonMap) |
void |
Json.readField(Object object,
String fieldName,
String jsonName,
JsonValue jsonData) |
void |
Json.readFields(Object object,
JsonValue jsonMap) |
<T> T |
Json.readValue(Class<T> type,
Class elementType,
JsonValue jsonData) |
<T> T |
Json.readValue(Class<T> type,
Class elementType,
T defaultValue,
JsonValue jsonData) |
<T> T |
Json.readValue(Class<T> type,
JsonValue jsonData) |
<T> T |
Json.readValue(String name,
Class<T> type,
Class elementType,
JsonValue jsonMap) |
<T> T |
Json.readValue(String name,
Class<T> type,
Class elementType,
T defaultValue,
JsonValue jsonMap) |
<T> T |
Json.readValue(String name,
Class<T> type,
JsonValue jsonMap) |
<T> T |
Json.readValue(String name,
Class<T> type,
T defaultValue,
JsonValue jsonMap) |
void |
JsonValue.setNext(JsonValue next) |
void |
JsonValue.setPrev(JsonValue prev) |
Copyright © 2014. All Rights Reserved.