Uses of Class
com.parse.ParseException

Uses of ParseException in com.parse
 

Methods in com.parse with parameters of type ParseException
abstract  void GetDataCallback.done(byte[] data, ParseException e)
           
abstract  void CountCallback.done(int count, ParseException e)
          Override this function with the code you want to run after the count is complete.
abstract  void FindCallback.done(List<T> objects, ParseException e)
          Override this function with the code you want to run after the fetch is complete.
abstract  void ConfigCallback.done(ParseConfig config, ParseException e)
           
abstract  void SignUpCallback.done(ParseException e)
          Override this function with the code you want to run after the signUp is complete.
abstract  void SendCallback.done(ParseException e)
          Override this function with the code you want to run after the send is complete.
abstract  void SaveCallback.done(ParseException e)
          Override this function with the code you want to run after the save is complete.
abstract  void RequestPasswordResetCallback.done(ParseException e)
          Override this function with the code you want to run after the request is complete.
abstract  void DeleteCallback.done(ParseException e)
          Override this function with the code you want to run after the delete is complete.
abstract  void LocationCallback.done(ParseGeoPoint geoPoint, ParseException e)
          Override this function with the code you want to run after the location fetch is complete.
abstract  void RefreshCallback.done(ParseObject object, ParseException e)
          Override this function with the code you want to run after the save is complete.
abstract  void LogInCallback.done(ParseUser user, ParseException e)
          Override this function with the code you want to run after the save is complete.
abstract  void GetCallback.done(T object, ParseException e)
          Override this function with the code you want to run after the fetch is complete.
abstract  void FunctionCallback.done(T object, ParseException e)
          Override this function with the code you want to run after the cloud function is complete.
 

Methods in com.parse that throw ParseException
static ParseUser ParseUser.become(String sessionToken)
          Authorize a user with a session token.
static
<T> T
ParseCloud.callFunction(String name, Map<String,?> params)
          Calls a cloud function.
 int ParseQuery.count()
          Counts the number of objects that match this query.
 void ParseObject.delete()
          Deletes this object on the server.
static
<T extends ParseObject>
void
ParseObject.deleteAll(List<T> objects)
          Deletes each object in the provided list.
 ParseUser ParseUser.fetch()
           
<T extends ParseObject>
T
ParseObject.fetch()
          Fetches this object with the data from the server.
static
<T extends ParseObject>
List<T>
ParseObject.fetchAll(List<T> objects)
          Fetches all the objects in the provided list.
static
<T extends ParseObject>
List<T>
ParseObject.fetchAllIfNeeded(List<T> objects)
          Fetches all the objects that don't have data in the provided list.
 void ParseObject.fetchFromLocalDatastore()
          Loads data from the local datastore into this object, if it has not been fetched from the server already.
 ParseUser ParseUser.fetchIfNeeded()
           
<T extends ParseObject>
T
ParseObject.fetchIfNeeded()
          If this ParseObject has not been fetched (i.e.
 List<T> ParseQuery.find()
          Retrieves a list of ParseObjects that satisfy this query.
static ParseConfig ParseConfig.get()
          Fetches a new configuration object from the server.
 T ParseQuery.get(String objectId)
          Constructs a ParseObject whose id is already known by fetching data from the source.
 byte[] ParseFile.getData()
          Synchronously gets the data for this object.
 T ParseQuery.getFirst()
          Retrieves at most one ParseObject that satisfies this query.
static ParseUser ParseUser.logIn(String username, String password)
          Logs in a user with a username and password.
 void ParseObject.pin()
          Stores the object and every object it points to in the local datastore, recursively.
 void ParseObject.pin(String name)
          Stores the object and every object it points to in the local datastore, recursively.
static
<T extends ParseObject>
void
ParseObject.pinAll(List<T> objects)
          Stores the objects and every object they point to in the local datastore, recursively.
static
<T extends ParseObject>
void
ParseObject.pinAll(String name, List<T> objects)
          Stores the objects and every object they point to in the local datastore, recursively.
 void ParseObject.refresh()
          Deprecated. Please use ParseObject.fetch() instead.
static void ParseUser.requestPasswordReset(String email)
          Requests a password reset email to be sent to the specified email address associated with the user account.
 void ParseObject.save()
          Saves this object to the server.
 void ParseFile.save()
          Saves the file to the Parse cloud synchronously.
static
<T extends ParseObject>
void
ParseObject.saveAll(List<T> objects)
          Saves each object in the provided list.
 void ParsePush.send()
          Sends this push notification while blocking this thread until the push notification has successfully reached the Parse servers.
 void ParseUser.signUp()
          Signs up a new user.
static void ParseTwitterUtils.unlink(ParseUser user)
          Unlinks a user from a Twitter account.
static void ParseFacebookUtils.unlink(ParseUser user)
          Unlinks a user from a Facebook account.
 void ParseObject.unpin()
          Removes the object and every object it points to in the local datastore, recursively.
 void ParseObject.unpin(String name)
          Removes the object and every object it points to in the local datastore, recursively.
static void ParseObject.unpinAll()
          Removes the objects and every object they point to in the local datastore, recursively.
static
<T extends ParseObject>
void
ParseObject.unpinAll(List<T> objects)
          Removes the objects and every object they point to in the local datastore, recursively.
static void ParseObject.unpinAll(String name)
          Removes the objects and every object they point to in the local datastore, recursively.
static
<T extends ParseObject>
void
ParseObject.unpinAll(String name, List<T> objects)
          Removes the objects and every object they point to in the local datastore, recursively.