Uses of Class
com.parse.ParseObject

Uses of ParseObject in com.parse
 

Classes in com.parse with type parameters of type ParseObject
 class FindCallback<T extends ParseObject>
          A FindCallback is used to run code after a ParseQuery is used to fetch a list of ParseObjects in a background thread.
 class GetCallback<T extends ParseObject>
          A GetCallback is used to run code after a ParseQuery is used to fetch a ParseObject in a background thread.
 class ParseQuery<T extends ParseObject>
          The ParseQuery class defines a query that is used to fetch ParseObjects.
 class ParseRelation<T extends ParseObject>
          A class that is used to access all of the children of a many-to-many relationship.
 

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

Methods in com.parse with type parameters of type ParseObject
static
<T extends ParseObject>
T
ParseObject.create(Class<T> subclass)
          Creates a new ParseObject based upon a subclass type.
static
<T extends ParseObject>
T
ParseObject.createWithoutData(Class<T> subclass, String objectId)
          Creates a reference to an existing ParseObject for use in creating associations between ParseObjects.
<T extends ParseObject>
T
ParseObject.fetch()
          Fetches this object with the data from the server.
static
<T extends ParseObject>
List<T>
ParseObject.fetchAllIfNeeded(List<T> objects)
          Fetches all the objects that don't have data in the provided list.
static
<T extends ParseObject>
void
ParseObject.fetchAllIfNeededInBackground(List<T> objects, FindCallback<T> callback)
          Fetches all the objects that don't have data in the provided list in the background
static
<T extends ParseObject>
void
ParseObject.fetchAllInBackground(List<T> objects, FindCallback<T> callback)
          Fetches all the objects in the provided list in the background
<T extends ParseObject>
void
ParseObject.fetchInBackground(GetCallback<T> callback)
          Fetches this object with the data from the server in a background thread.
static
<T extends ParseObject>
ParseQuery<T>
ParseQuery.getQuery(Class<T> subclass)
          Creates a new query for the given ParseObject subclass type.
static
<T extends ParseObject>
ParseQuery<T>
ParseQuery.getQuery(String className)
          Creates a new query for the given class name.
<T extends ParseObject>
ParseRelation<T>
ParseObject.getRelation(String key)
          Access or create a Relation value for a key
static
<T extends ParseObject>
ParseQuery<T>
ParseQuery.or(List<ParseQuery<T>> queries)
          Constructs a query that is the or of the given queries.
 

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.fetchIfNeeded()
          If this ParseObject has not been fetched (i.e.
 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.
 

Methods in com.parse with parameters of type ParseObject
abstract  void RefreshCallback.done(ParseObject object, ParseException e)
          Override this function with the code you want to run after the save is complete.
 boolean ParseObject.hasSameId(ParseObject other)
           
 

Method parameters in com.parse with type arguments of type ParseObject
static List<ParseObject> ParseObject.fetchAll(List<ParseObject> objects)
          Fetches all the objects in the provided list.
 void ParseObject.fetchIfNeededInBackground(GetCallback<ParseObject> callback)
          If this ParseObject has not been fetched (i.e.
static void ParseObject.registerSubclass(Class<? extends ParseObject> subclass)
          Registers a custom subclass type with the Parse SDK, enabling strong-typing of those ParseObjects whenever they appear.
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.