Modifier and Type | Class and Description |
---|---|
class |
NodeArray
Node representing an array of values.
|
class |
NodeFalse
Represents the terminal symbol "false".
|
class |
NodeNull
Represents the terminal symbol "null".
|
class |
NodeNumber
Represents a number in a JSON object.
|
class |
NodeObj
Represents a whole JSON object, i. e. its members, i. e. a list of pairs
consisting out of a label and a value.
|
class |
NodeString
Represents a JSON String.
|
class |
NodeTrue
Represents the terminal symbol "true".
|
Modifier and Type | Field and Description |
---|---|
protected NodeValue |
NodePair.mValue
The value of the pair.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<NodeValue> |
NodeElements.mValueList |
Modifier and Type | Method and Description |
---|---|
NodeValue |
NodeArray.get(int idx) |
NodeValue |
NodeElements.get(int idx) |
NodeValue |
NodeArray.getNext() |
NodeValue |
NodeElements.getNext()
Returns the next NodeValue element from mValueList.
|
NodeValue |
NodePair.getValue() |
NodeValue |
JsonObj.getValue(java.lang.String string)
Gets the value of the pair with the string (i. e. the label) given in the
parameter.
|
NodeValue |
NodeObj.getValue(java.lang.String string)
Gets the value of the pair with the string (i. e. the label) given in the
parameter.
|
Modifier and Type | Method and Description |
---|---|
void |
NodeArray.add(NodeValue nv)
Appends the value to the end of the element list.
|
protected void |
NodeElements.add(NodeValue nv)
Appends the value to the end of the element list.
|