Uses of Class
org.quickconnectfamily.json.JSONException

Packages that use JSONException
org.quickconnectfamily.json   
org.quickconnectfamily.sync   
 

Uses of JSONException in org.quickconnectfamily.json
 

Methods in org.quickconnectfamily.json that throw JSONException
static java.lang.Object JSONUtilities.parse(java.lang.String aJSONString)
          Parses a string using the default platform encoding.
static java.lang.Object JSONUtilities.parse(java.lang.String aJSONString, JSONUtilities.encoding theEncoding)
          Parses a string using the defined encoding.
 java.lang.Object JSONInputStream.readObject()
          Reads a HashMap or ArrayList from the underlying stream
static java.lang.String JSONUtilities.stringify(java.io.Serializable aSerializableObject)
          Converts a Serializable object into a JSON formatted string
static java.lang.String JSONUtilities.stringify(java.io.Serializable aSerializableObject, JSONUtilities.encoding theEncoding)
          Converts a Serializable object into a JSON formatted string using the specified Encoding
 void JSONOutputStream.writeObject(java.io.Serializable aSerializableObject)
          Writes a Serializable Object to the underlying stream as a JSON string
 

Uses of JSONException in org.quickconnectfamily.sync
 

Methods in org.quickconnectfamily.sync that throw JSONException
 void SynchronizedDB.clearSync()
          This is a method that should rarely, if ever, be used.
 DataAccessResult SynchronizedDB.setData(java.lang.String sqlKey, java.lang.Object[] parameters)
          This method is used to insert data into the SQLite database on the device or do any other type of database modification.
 void SynchronizedDB.sync()
          This method pushes any stored setData parameters to the HTTP service, waits for any data from the service, and then inserts any data received from the service into the appropriate tables in the local SQLite database.
 

Constructors in org.quickconnectfamily.sync that throw JSONException
SyncData(java.lang.String lastSync, java.util.ArrayList<java.util.ArrayList<java.lang.String>> syncValues)