util.JSONArray.get(
   index INTEGER )
  RETURNS result-type 
 | 
Returns the value of a JSON array element. | 
                    
                        
                            util.JSONArray.getLength()
  RETURNS INTEGER 
                         | 
                        Returns the number of elements in the
JSON array object. | 
                    
util.JSONArray.getType(
   index INTEGER )
  RETURNS STRING 
 | 
Returns the type of a JSON array element. | 
util.JSONArray.put(
   index INTEGER,
   value value-type ) 
 | 
Sets an element by position in the JSON
array object. | 
util.JSONArray.remove(
   index INTEGER ) 
 | 
Removes the specified entry in the JSON
array object. | 
util.JSONArray.toFGL(
   arrayRef dynamic-array-type ) 
 | 
Fills a dynamic array variable with
the elements contained in the JSON array object. | 
util.JSONArray.toString()
  RETURNS STRING 
 | 
Builds a JSON string from the elements
contained in the JSON array object. |