util.JSONObject.get(
name STRING )
RETURNING result result-type
|
Returns the value corresponding to the
specified entry name. |
util.JSONObject.getType(
name STRING )
RETURNING type STRING
|
Returns the type of a JSON object element. |
util.JSONObject.has(
name STRING )
RETURNING result BOOLEAN
|
Checks if the JSON object contains a specific entry
name. |
util.JSONObject.getLength()
RETURNING len INTEGER
|
Returns the number of name-value pairs
in the JSON object. |
util.JSONObject.name(
index INTEGER )
RETURNING result STRING
|
Returns the name of a JSON object entry
by position. |
util.JSONObject.put(
name STRING,
value value-type )
|
Sets a name-value pair in the JSON object. |
util.JSONObject.remove(
name STRING )
|
Removes the specified element in the
JSON object. |
util.JSONObject.toString()
RETURNING result STRING
|
Builds a JSON string from the values
contained in the JSON object. |
util.JSONObject.toFGL(
dest RECORD )
|
Fills a record variable with the entries
contained in the JSON object. |