Uses of Class
org.apache.wicket.ajax.json.JSONArray

Packages that use JSONArray
org.apache.wicket.ajax.json   
 

Uses of JSONArray in org.apache.wicket.ajax.json
 

Methods in org.apache.wicket.ajax.json that return JSONArray
static JSONArray JsonUtils.asArray(Map<String,Object> map)
          Converts a Map to JSONArray suitable for jQuery#param().
 JSONArray JSONArray.getJSONArray(int index)
          Returns the value at index if it exists and is a JSONArray.
 JSONArray JSONObject.getJSONArray(String name)
          Returns the value mapped by name if it exists and is a JSONArray, or throws otherwise.
 JSONArray JSONObject.names()
          Returns an array containing the string names in this object.
 JSONArray JSONArray.optJSONArray(int index)
          Returns the value at index if it exists and is a JSONArray.
 JSONArray JSONObject.optJSONArray(String name)
          Returns the value mapped by name if it exists and is a JSONArray, or null otherwise.
 JSONArray JSONArray.put(boolean value)
          Appends value to the end of this array.
 JSONArray JSONArray.put(Collection<?> value)
          Appends value wrapped by JSONArray to the end of this array.
 JSONArray JSONArray.put(double value)
          Appends value to the end of this array.
 JSONArray JSONArray.put(int value)
          Appends value to the end of this array.
 JSONArray JSONArray.put(int index, boolean value)
          Sets the value at index to value, null padding this array to the required length if necessary.
 JSONArray JSONArray.put(int index, Collection<?> value)
          Sets the value at index to value wrapped into JSONArray, null padding this array to the required length if necessary.
 JSONArray JSONArray.put(int index, double value)
          Sets the value at index to value, null padding this array to the required length if necessary.
 JSONArray JSONArray.put(int index, int value)
          Sets the value at index to value, null padding this array to the required length if necessary.
 JSONArray JSONArray.put(int index, long value)
          Sets the value at index to value, null padding this array to the required length if necessary.
 JSONArray JSONArray.put(int integer, Map<?,?> map)
          Deprecated. since 6.27.0/7.7.0 for legal reasons.
 JSONArray JSONArray.put(int index, Object value)
          Sets the value at index to value, null padding this array to the required length if necessary.
 JSONArray JSONArray.put(long value)
          Appends value to the end of this array.
 JSONArray JSONArray.put(Map<?,?> map)
          Deprecated. since 6.27.0/7.7.0 for legal reasons.
 JSONArray JSONArray.put(Object value)
          Appends value to the end of this array.
static JSONArray CDL.rowToJSONArray(JSONTokener x)
          Deprecated.  
 JSONArray JSONObject.toJSONArray(JSONArray names)
          Returns an array with the values corresponding to names.
static JSONArray CDL.toJSONArray(JSONArray names, JSONTokener x)
          Deprecated.  
static JSONArray CDL.toJSONArray(JSONArray names, String string)
          Deprecated.  
static JSONArray CDL.toJSONArray(JSONTokener x)
          Deprecated.  
static JSONArray JSONML.toJSONArray(String string)
          Deprecated.  
static JSONArray CDL.toJSONArray(String string)
          Deprecated.  
static JSONArray JSONML.toJSONArray(XMLTokener x)
          Deprecated.  
 

Methods in org.apache.wicket.ajax.json with parameters of type JSONArray
static JSONObject CDL.rowToJSONObject(JSONArray names, JSONTokener x)
          Deprecated.  
static String CDL.rowToString(JSONArray ja)
          Deprecated.  
 JSONArray JSONObject.toJSONArray(JSONArray names)
          Returns an array with the values corresponding to names.
static JSONArray CDL.toJSONArray(JSONArray names, JSONTokener x)
          Deprecated.  
static JSONArray CDL.toJSONArray(JSONArray names, String string)
          Deprecated.  
 JSONObject JSONArray.toJSONObject(JSONArray names)
          Returns a new object whose values are the values in this array, and whose names are the values in names.
static String JSONML.toString(JSONArray ja)
          Deprecated.  
static String CDL.toString(JSONArray ja)
          Deprecated.  
static String CDL.toString(JSONArray names, JSONArray ja)
          Deprecated.  
 



Copyright © 2006–2020 Apache Software Foundation. All rights reserved.