Uses of Class
org.json.JSONArray

Packages that use JSONArray
com.basho.riak.client.http.mapreduce.filter The legacy, low-level HTTP REST client map reduce key filters, consider using the high-level IRiakClient 
com.basho.riak.client.http.response HTTP response handling/wrapping classes for the legacy HTTP REST client, consider using the high-level IRiakClient 
com.basho.riak.client.http.util Supporting utility classes for the legacy HTTP REST client, consider using the high-level IRiakClient 
com.basho.riak.client.mapreduce.filter Deprecated please see com.basho.riak.http.client.mapreduce.filter 
com.basho.riak.client.response Deprecated please see com.basho.riak.http.client.response 
com.basho.riak.client.util General utility classes used by the API, mainly deprecated classes that have been moved to com.basho.riak.client.http.util. 
com.basho.riak.pbc The legacy, low-level Protocol Buffers RiakClient and associated classes, consider using the high-level IRiakClient 
com.basho.riak.pbc.mapreduce The legacy, low-level Protocol Buffers query classes for Map Reduce. 
org.json Copied verbatim from Doug Crockford's github JSON java project, soon to be removed. 
 

Uses of JSONArray in com.basho.riak.client.http.mapreduce.filter
 

Methods in com.basho.riak.client.http.mapreduce.filter that return JSONArray
 JSONArray UrlDecodeFilter.toJson()
           
 JSONArray ToUpperFilter.toJson()
           
 JSONArray ToLowerFilter.toJson()
           
 JSONArray TokenizeFilter.toJson()
           
 JSONArray StringToIntFilter.toJson()
           
 JSONArray StringToFloatFilter.toJson()
           
 JSONArray StartsWithFilter.toJson()
           
 JSONArray SimilarToFilter.toJson()
           
 JSONArray SetMemberFilter.toJson()
           
 JSONArray NotEqualToFilter.toJson()
           
 JSONArray MatchFilter.toJson()
           
 JSONArray MapReduceFilter.toJson()
           
 JSONArray LogicalOrFilter.toJson()
           
 JSONArray LogicalNotFilter.toJson()
           
 JSONArray LogicalFilterGroup.toJson()
           
 JSONArray LogicalAndFilter.toJson()
           
 JSONArray LessThanOrEqualFilter.toJson()
           
 JSONArray LessThanFilter.toJson()
           
 JSONArray IntToStringFilter.toJson()
           
 JSONArray GreaterThanOrEqualFilter.toJson()
           
 JSONArray GreaterThanFilter.toJson()
           
 JSONArray FloatToStringFilter.toJson()
           
 JSONArray EqualToFilter.toJson()
           
 JSONArray EndsWithFilter.toJson()
           
 JSONArray BetweenFilter.toJson()
           
 

Constructors in com.basho.riak.client.http.mapreduce.filter with parameters of type JSONArray
SetMemberFilter(JSONArray setMembers)
           
 

Uses of JSONArray in com.basho.riak.client.http.response
 

Methods in com.basho.riak.client.http.response that return JSONArray
 JSONArray MapReduceResponse.getResults()
          The result of the map-reduce query as a JSON array
 

Uses of JSONArray in com.basho.riak.client.http.util
 

Methods in com.basho.riak.client.http.util with parameters of type JSONArray
static List<String> ClientUtils.jsonArrayAsList(JSONArray json)
          Convert a JSONArray to a list
 

Uses of JSONArray in com.basho.riak.client.mapreduce.filter
 

Methods in com.basho.riak.client.mapreduce.filter that return JSONArray
 JSONArray UrlDecodeFilter.toJson()
          Deprecated.  
 JSONArray ToUpperFilter.toJson()
          Deprecated.  
 JSONArray ToLowerFilter.toJson()
          Deprecated.  
 JSONArray TokenizeFilter.toJson()
          Deprecated.  
 JSONArray StringToIntFilter.toJson()
          Deprecated.  
 JSONArray StringToFloatFilter.toJson()
          Deprecated.  
 JSONArray StartsWithFilter.toJson()
          Deprecated.  
 JSONArray SimilarToFilter.toJson()
          Deprecated.  
 JSONArray SetMemberFilter.toJson()
          Deprecated.  
 JSONArray NotEqualToFilter.toJson()
          Deprecated.  
 JSONArray MatchFilter.toJson()
          Deprecated.  
 JSONArray MapReduceFilter.toJson()
          Deprecated.  
 JSONArray LogicalOrFilter.toJson()
          Deprecated.  
 JSONArray LogicalNotFilter.toJson()
          Deprecated.  
 JSONArray LogicalFilterGroup.toJson()
          Deprecated.  
 JSONArray LogicalAndFilter.toJson()
          Deprecated.  
 JSONArray LessThanOrEqualFilter.toJson()
          Deprecated.  
 JSONArray LessThanFilter.toJson()
          Deprecated.  
 JSONArray IntToStringFilter.toJson()
          Deprecated.  
 JSONArray GreaterThanOrEqualFilter.toJson()
          Deprecated.  
 JSONArray GreaterThanFilter.toJson()
          Deprecated.  
 JSONArray FloatToStringFilter.toJson()
          Deprecated.  
 JSONArray EqualToFilter.toJson()
          Deprecated.  
 JSONArray EndsWithFilter.toJson()
          Deprecated.  
 JSONArray BetweenFilter.toJson()
          Deprecated.  
 

Constructors in com.basho.riak.client.mapreduce.filter with parameters of type JSONArray
SetMemberFilter(JSONArray setMembers)
          Deprecated.  
 

Uses of JSONArray in com.basho.riak.client.response
 

Methods in com.basho.riak.client.response that return JSONArray
 JSONArray MapReduceResponse.getResults()
          Deprecated. The result of the map-reduce query as a JSON array
 

Uses of JSONArray in com.basho.riak.client.util
 

Methods in com.basho.riak.client.util with parameters of type JSONArray
static List<String> ClientUtils.jsonArrayAsList(JSONArray json)
          Deprecated. Convert a JSONArray to a list
 

Uses of JSONArray in com.basho.riak.pbc
 

Methods in com.basho.riak.pbc that return JSONArray
static JSONArray MapReduceResponseSource.readAllResults(MapReduceResponseSource response)
          Buffer the full set of results into a JSONArray
 

Uses of JSONArray in com.basho.riak.pbc.mapreduce
 

Methods in com.basho.riak.pbc.mapreduce that return JSONArray
 JSONArray MapReduceResponse.getJSON()
           
 

Uses of JSONArray in org.json
 

Methods in org.json that return JSONArray
 JSONArray JSONArray.getJSONArray(int index)
          Get the JSONArray associated with an index.
 JSONArray JSONObject.getJSONArray(String key)
          Get the JSONArray value associated with a key.
 JSONArray JSONObject.names()
          Produce a JSONArray containing the names of the elements of this JSONObject.
 JSONArray JSONArray.optJSONArray(int index)
          Get the optional JSONArray associated with an index.
 JSONArray JSONObject.optJSONArray(String key)
          Get an optional JSONArray associated with a key.
 JSONArray JSONArray.put(boolean value)
          Append a boolean value.
 JSONArray JSONArray.put(Collection value)
          Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.
 JSONArray JSONArray.put(double value)
          Append a double value.
 JSONArray JSONArray.put(int value)
          Append an int value.
 JSONArray JSONArray.put(int index, boolean value)
          Put or replace a boolean value in the JSONArray.
 JSONArray JSONArray.put(int index, Collection value)
          Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.
 JSONArray JSONArray.put(int index, double value)
          Put or replace a double value.
 JSONArray JSONArray.put(int index, int value)
          Put or replace an int value.
 JSONArray JSONArray.put(int index, long value)
          Put or replace a long value.
 JSONArray JSONArray.put(int index, Map value)
          Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
 JSONArray JSONArray.put(int index, Object value)
          Put or replace an object value in the JSONArray.
 JSONArray JSONArray.put(long value)
          Append an long value.
 JSONArray JSONArray.put(Map value)
          Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.
 JSONArray JSONArray.put(Object value)
          Append an object value.
static JSONArray CDL.rowToJSONArray(JSONTokener x)
          Produce a JSONArray of strings from a row of comma delimited values.
 JSONArray JSONObject.toJSONArray(JSONArray names)
          Produce a JSONArray containing the values of the members of this JSONObject.
static JSONArray CDL.toJSONArray(JSONArray names, JSONTokener x)
          Produce a JSONArray of JSONObjects from a comma delimited text string using a supplied JSONArray as the source of element names.
static JSONArray CDL.toJSONArray(JSONArray names, String string)
          Produce a JSONArray of JSONObjects from a comma delimited text string using a supplied JSONArray as the source of element names.
static JSONArray CDL.toJSONArray(JSONTokener x)
          Produce a JSONArray of JSONObjects from a comma delimited text string, using the first row as a source of names.
static JSONArray JSONML.toJSONArray(String string)
          Convert a well-formed (but not necessarily valid) XML string into a JSONArray using the JsonML transform.
static JSONArray CDL.toJSONArray(String string)
          Produce a JSONArray of JSONObjects from a comma delimited text string, using the first row as a source of names.
static JSONArray JSONML.toJSONArray(XMLTokener x)
          Convert a well-formed (but not necessarily valid) XML string into a JSONArray using the JsonML transform.
 

Methods in org.json with parameters of type JSONArray
static JSONObject CDL.rowToJSONObject(JSONArray names, JSONTokener x)
          Produce a JSONObject from a row of comma delimited text, using a parallel JSONArray of strings to provides the names of the elements.
static String CDL.rowToString(JSONArray ja)
          Produce a comma delimited text row from a JSONArray.
 JSONArray JSONObject.toJSONArray(JSONArray names)
          Produce a JSONArray containing the values of the members of this JSONObject.
static JSONArray CDL.toJSONArray(JSONArray names, JSONTokener x)
          Produce a JSONArray of JSONObjects from a comma delimited text string using a supplied JSONArray as the source of element names.
static JSONArray CDL.toJSONArray(JSONArray names, String string)
          Produce a JSONArray of JSONObjects from a comma delimited text string using a supplied JSONArray as the source of element names.
 JSONObject JSONArray.toJSONObject(JSONArray names)
          Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.
static String JSONML.toString(JSONArray ja)
          Reverse the JSONML transformation, making an XML text from a JSONArray.
static String CDL.toString(JSONArray ja)
          Produce a comma delimited text from a JSONArray of JSONObjects.
static String CDL.toString(JSONArray names, JSONArray ja)
          Produce a comma delimited text from a JSONArray of JSONObjects using a provided list of names.
 



Copyright © 2012. All Rights Reserved.