Uses of Class
JsonFse.NodeValue
-
-
Uses of NodeValue in JsonFse
Subclasses of NodeValue in JsonFse Modifier and Type Class 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".Fields in JsonFse declared as NodeValue Modifier and Type Field Description protected NodeValue
NodePair. mValue
The value of the pair.Fields in JsonFse with type parameters of type NodeValue Modifier and Type Field Description protected java.util.ArrayList<NodeValue>
NodeElements. mValueList
Methods in JsonFse that return NodeValue Modifier and Type Method 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
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.NodeValue
NodePair. getValue()
Methods in JsonFse with parameters of type NodeValue Modifier and Type Method 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.
-