Package | Description |
---|---|
com.badlogic.gdx.utils |
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(java.lang.String name)
Returns the child with the specified name.
|
JsonValue |
JsonValue.getChild(java.lang.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 |
UBJsonReader.parse(java.io.DataInputStream din) |
protected JsonValue |
UBJsonReader.parse(java.io.DataInputStream din,
byte type) |
JsonValue |
BaseJsonReader.parse(FileHandle file) |
JsonValue |
JsonReader.parse(FileHandle file) |
JsonValue |
UBJsonReader.parse(FileHandle file) |
JsonValue |
BaseJsonReader.parse(java.io.InputStream input) |
JsonValue |
JsonReader.parse(java.io.InputStream input) |
JsonValue |
UBJsonReader.parse(java.io.InputStream input) |
JsonValue |
JsonReader.parse(java.io.Reader reader) |
JsonValue |
JsonReader.parse(java.lang.String json) |
protected JsonValue |
UBJsonReader.parseArray(java.io.DataInputStream din) |
protected JsonValue |
UBJsonReader.parseData(java.io.DataInputStream din,
byte blockType) |
protected JsonValue |
UBJsonReader.parseObject(java.io.DataInputStream din) |
JsonValue |
JsonValue.prev()
Returns the previous sibling of this value.
|
JsonValue |
JsonValue.remove(int index)
Removes the child with the specified name.
|
JsonValue |
JsonValue.remove(java.lang.String name)
Removes the child with the specified name.
|
JsonValue |
JsonValue.require(int index)
Returns the child at the specified index.
|
JsonValue |
JsonValue.require(java.lang.String name)
Returns the child with the specified name.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<JsonValue> |
JsonValue.JsonIterator.iterator() |
Modifier and Type | Method and Description |
---|---|
void |
Json.Serializable.read(Json json,
JsonValue jsonData) |
T |
Json.Serializer.read(Json json,
JsonValue jsonData,
java.lang.Class type) |
abstract T |
Json.ReadOnlySerializer.read(Json json,
JsonValue jsonData,
java.lang.Class type) |
void |
Json.readField(java.lang.Object object,
java.lang.String name,
java.lang.Class elementType,
JsonValue jsonData) |
void |
Json.readField(java.lang.Object object,
java.lang.String name,
JsonValue jsonData) |
void |
Json.readField(java.lang.Object object,
java.lang.String fieldName,
java.lang.String jsonName,
java.lang.Class elementType,
JsonValue jsonMap) |
void |
Json.readField(java.lang.Object object,
java.lang.String fieldName,
java.lang.String jsonName,
JsonValue jsonData) |
void |
Json.readFields(java.lang.Object object,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.Class<T> type,
java.lang.Class elementType,
JsonValue jsonData) |
<T> T |
Json.readValue(java.lang.Class<T> type,
java.lang.Class elementType,
T defaultValue,
JsonValue jsonData) |
<T> T |
Json.readValue(java.lang.Class<T> type,
JsonValue jsonData) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
java.lang.Class elementType,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
java.lang.Class elementType,
T defaultValue,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
JsonValue jsonMap) |
<T> T |
Json.readValue(java.lang.String name,
java.lang.Class<T> type,
T defaultValue,
JsonValue jsonMap) |
void |
JsonValue.setNext(JsonValue next) |
void |
JsonValue.setPrev(JsonValue prev) |