Uses of Class
com.parse.ParseObject

Uses of ParseObject in com.parse
 

Subclasses of ParseObject in com.parse
 class ParseInstallation
           
 class ParseRole
          Represents a Role on the Parse server.
 class ParseUser
           
 

Methods in com.parse that return ParseObject
static ParseObject ParseObject.create(String className)
          Creates a new ParseObject based upon a class name.
static ParseObject ParseObject.createWithoutData(String className, String objectId)
          Creates a reference to an existing ParseObject for use in creating associations between ParseObjects.
 ParseObject ParseObject.fetch()
          Fetches this object with the data from the server.
 ParseObject ParseInstallation.fetch()
           
 ParseObject ParseObject.fetchIfNeeded()
          If this ParseObject has not been fetched (i.e.
 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)
           
 ParseObject ParseQuery.getFirst()
          Retrieves at most one ParseObject that satisfies this query.
protected  ParseObject ParseQuery.getFirst(boolean needsLock)
           
 ParseObject ParseObject.getParseObject(String key)
          Access a ParseObject value.
 

Methods in com.parse that return types with arguments of type ParseObject
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.
 List<ParseObject> ParseQuery.find()
          Retrieves a list of ParseObjects that satisfy this query.
 List<ParseObject> ParseQuery.find(boolean needsLock)
           
 

Methods in com.parse with parameters of type ParseObject
 void ParseRelation.add(ParseObject object)
          Adds an object to this relation.
protected  void ParseObject.copyChangesFrom(ParseObject other)
          Copies all of the operations that have been performed on another object since its last save onto this one.
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.
 boolean ParseObject.hasSameId(ParseObject other)
           
protected  void ParseUser.mergeFromObject(ParseObject other)
           
protected  void ParseObject.mergeFromObject(ParseObject other)
           
 void ParseRelation.remove(ParseObject object)
          Removes an object from this relation.
 

Method parameters in com.parse with type arguments of type ParseObject
abstract  void FindCallback.done(List<ParseObject> objects, ParseException e)
          Override this function with the code you want to run after the fetch is complete.
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.
static void ParseObject.fetchAllIfNeededInBackground(List<ParseObject> objects, FindCallback callback)
          Fetches all the objects that don't have data in the provided list in the background
static void ParseObject.fetchAllInBackground(List<ParseObject> objects, FindCallback callback)
          Fetches all the objects in the provided list in the background
static void ParseObject.saveAll(List<ParseObject> objects)
          Saves each object in the provided list.
static void ParseObject.saveAllInBackground(List<ParseObject> objects)
          Saves each object to the server in a background thread.
static void ParseObject.saveAllInBackground(List<ParseObject> objects, SaveCallback callback)
          Saves each object in the provided list to the server in a background thread.