Uses of Class
xv.json.JSONVariant

Packages that use JSONVariant
xv.json [alpha] Provides classes for simple JSON handling. 
 

Uses of JSONVariant in xv.json
 

Subclasses of JSONVariant in xv.json
 class JSONArray
          Represents a JSON array.
 class JSONBoolean
          Represents a JSON boolean.
 class JSONNumber
          A JSON number.
 class JSONObject
          A mutable JSON object.
 class JSONString
          A JSON string.
 

Methods in xv.json that return JSONVariant
 JSONVariant JSONArray.get(int index)
           
 JSONVariant JSONObject.get(Object key)
          
static JSONVariant JSON.parse(InputStream in)
          Parse the given input as JSON.
static JSONVariant JSON.parse(Reader reader)
          Parse the given input as JSON.
static JSONVariant JSON.parse(String string)
          Parses the given string as a JSON document.
 JSONVariant JSONObject.put(String key, JSONVariant value)
          
 JSONVariant JSONArray.remove(int index)
           
 JSONVariant JSONObject.remove(Object key)
          
 JSONVariant JSONArray.set(int index, JSONVariant element)
           
 

Methods in xv.json that return types with arguments of type JSONVariant
 Set<Map.Entry<String,JSONVariant>> JSONObject.entrySet()
          
 Iterator<JSONVariant> JSONArray.iterator()
           
 ListIterator<JSONVariant> JSONArray.listIterator()
           
 ListIterator<JSONVariant> JSONArray.listIterator(int index)
           
 List<JSONVariant> JSONArray.subList(int fromIndex, int toIndex)
           
 Collection<JSONVariant> JSONObject.values()
          
 

Methods in xv.json with parameters of type JSONVariant
 void JSONArray.add(int index, JSONVariant element)
           
 boolean JSONArray.add(JSONVariant o)
           
 JSONVariant JSONObject.put(String key, JSONVariant value)
          
 JSONVariant JSONArray.set(int index, JSONVariant element)
           
 

Method parameters in xv.json with type arguments of type JSONVariant
 boolean JSONArray.addAll(Collection<? extends JSONVariant> c)
           
 boolean JSONArray.addAll(int index, Collection<? extends JSONVariant> c)
           
 void JSONObject.putAll(Map<? extends String,? extends JSONVariant> t)
          
 



Copyright © 2008-2011. All Rights Reserved.