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