Uses of Interface
org.xerial.json.JSONValue

Packages that use JSONValue
org.xerial.db.sql   
org.xerial.db.sql.sqlite Database access adaptor for SQLite3 
org.xerial.json JSON reader/writer and classes to represent JSON values (JSONObject, JSONArray, JSONString, JSONNumber, etc.) 
org.xerial.util.bean BeanUtil library that supports smooth exchange between JSON(XML) data and Java (bean class) objects 
org.xerial.wiki   
 

Uses of JSONValue in org.xerial.db.sql
 

Methods in org.xerial.db.sql that return JSONValue
 JSONValue JSONValueReader.handle(ResultSet rs)
           
 

Uses of JSONValue in org.xerial.db.sql.sqlite
 

Methods in org.xerial.db.sql.sqlite that return types with arguments of type JSONValue
 List<JSONValue> SQLiteAccess.selectColumnData(String sql, String targetColumn)
           
 

Uses of JSONValue in org.xerial.json
 

Subinterfaces of JSONValue in org.xerial.json
 interface JSONNumber
           
 

Classes in org.xerial.json that implement JSONValue
 class JSONArray
           
 class JSONBoolean
           
 class JSONDouble
           
 class JSONInteger
           
 class JSONLong
           
 class JSONNull
           
 class JSONObject
           
 class JSONString
           
 class JSONValueBase
           
 

Methods in org.xerial.json that return JSONValue
 JSONValue JSONArray.get(int index)
           
 JSONValue JSONObject.get(String key)
           
 JSONValue JSONPullParser.getValue()
          Reads the current JSONValue, which is one of JSONObject , JSONArray, JSONInteger, JSONDouble, JSONString, JSONBoolean and JSONNull.
static JSONValue JSONUtil.toJSONValue(Object value)
           
 JSONValue JSONValueBase.translateAsJSONValue(Object value)
           
 JSONValue JSONWalker.value()
           
 

Methods in org.xerial.json that return types with arguments of type JSONValue
 Map<String,JSONValue> JSONObject.getKeyValueMap()
           
 Iterator<JSONValue> JSONArray.iterator()
           
 

Methods in org.xerial.json with parameters of type JSONValue
 void JSONArray.add(JSONValue value)
           
 void JSONObject.put(String key, JSONValue obj)
           
 

Uses of JSONValue in org.xerial.util.bean
 

Methods in org.xerial.util.bean that return JSONValue
static JSONValue BeanUtil.getValue(Object bean, String propertyName)
           
 

Uses of JSONValue in org.xerial.wiki
 

Methods in org.xerial.wiki that return JSONValue
 JSONValue WikiValue.toJSONValue()
           
 JSONValue WikiString.toJSONValue()
           
 JSONValue WikiHash.toJSONValue()
           
 JSONValue WikiArray.toJSONValue()
           
 



Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 2.1 Japan License.