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<ParseObject> objects, ParseException e)
          Override this function with the code you want to run after the fetch is complete.
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 RefreshCallback.done(ParseObject object, ParseException e)
          Override this function with the code you want to run after the save is complete.
abstract  void GetCallback.done(ParseObject object, ParseException e)
          Override this function with the code you want to run after the fetch 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 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
<T> T
ParseCloud.callFunction(String name, Map<String,?> params)
          Calls a cloud function.
protected  com.parse.ParseCommand ParseUser.constructSaveCommand()
           
protected  com.parse.ParseCommand ParseObject.constructSaveCommand()
           
 int ParseQuery.count()
          Counts the number of objects that match this query.
protected  int ParseQuery.count(boolean needsLock)
           
 void ParseObject.delete()
          Deletes this object on the server.
 ParseUser ParseUser.fetch()
           
 ParseObject ParseObject.fetch()
          Fetches this object with the data from the server.
 ParseObject ParseInstallation.fetch()
           
static List<ParseObject> ParseObject.fetchAll(List<ParseObject> objects)
          Fetches all the objects in the provided list.
static List<ParseObject> ParseObject.fetchAllIfNeeded(List<ParseObject> objects)
          Fetches all the objects that don't have data in the provided list.
 ParseUser ParseUser.fetchIfNeeded()
           
 ParseObject ParseObject.fetchIfNeeded()
          If this ParseObject has not been fetched (i.e.
 List<ParseObject> ParseQuery.find()
          Retrieves a list of ParseObjects that satisfy this query.
 List<ParseObject> ParseQuery.find(boolean needsLock)
           
 ParseObject ParseQuery.get(String theObjectId)
          Constructs a ParseObject whose id is already known by fetching data from the server.
protected  ParseObject ParseQuery.get(String theObjectId, boolean needsLock)
           
 byte[] ParseFile.getData()
          Synchronously gets the data for this object.
protected  byte[] ParseFile.getData(boolean needsToSetState, ProgressCallback progressCallback)
           
 ParseObject ParseQuery.getFirst()
          Retrieves at most one ParseObject that satisfies this query.
protected  ParseObject ParseQuery.getFirst(boolean needsLock)
           
static ParseUser ParseUser.logIn(String username, String password)
          Logs in a user with a username and password.
 void ParseObject.refresh()
          Refreshes this object with the data from the server.
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.
 void ParseUser.save(boolean needsLock)
           
static void ParseObject.saveAll(List<ParseObject> 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.
protected  void ParseUser.signUp(boolean needsLock)
           
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.