|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
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
ParseObject s 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 |
ParseQueryAdapter<T extends ParseObject>
A ParseQueryAdapter handles the fetching of objects by page, and displaying objects as views in a ListView. |
static interface |
ParseQueryAdapter.OnQueryLoadListener<T extends ParseObject>
Implement with logic that is called before and after objects are fetched from Parse by the adapter. |
static interface |
ParseQueryAdapter.QueryFactory<T extends ParseObject>
Implement to construct your own custom ParseQuery for fetching objects. |
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
|
ParseObject.create(Class<T> subclass)
Creates a new ParseObject based upon a subclass type. |
|
static
|
ParseObject.createWithoutData(Class<T> subclass,
String objectId)
Creates a reference to an existing ParseObject for use in creating associations between ParseObjects. |
|
static
|
ParseObject.deleteAll(List<T> objects)
Deletes each object in the provided list. |
|
static
|
ParseObject.deleteAllInBackground(List<T> objects)
Deletes each object in the provided list. |
|
static
|
ParseObject.deleteAllInBackground(List<T> objects,
DeleteCallback callback)
Deletes each object in the provided list. |
|
|
ParseObject.fetch()
Fetches this object with the data from the server. |
|
static
|
ParseObject.fetchAll(List<T> objects)
Fetches all the objects in the provided list. |
|
static
|
ParseObject.fetchAllIfNeeded(List<T> objects)
Fetches all the objects that don't have data in the provided list. |
|
static
|
ParseObject.fetchAllIfNeededInBackground(List<T> objects)
Fetches all the objects that don't have data in the provided list in the background. |
|
static
|
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
|
ParseObject.fetchAllInBackground(List<T> objects)
Fetches all the objects in the provided list in the background. |
|
static
|
ParseObject.fetchAllInBackground(List<T> objects,
FindCallback<T> callback)
Fetches all the objects in the provided list in the background. |
|
|
ParseObject.fetchFromLocalDatastoreInBackground(GetCallback<T> callback)
Loads data from the local datastore into this object, if it has not been fetched from the server already. |
|
|
ParseObject.fetchIfNeeded()
If this ParseObject has not been fetched (i.e. |
|
|
ParseObject.fetchIfNeededInBackground()
If this ParseObject has not been fetched (i.e. |
|
|
ParseObject.fetchIfNeededInBackground(GetCallback<T> callback)
If this ParseObject has not been fetched (i.e. |
|
|
ParseObject.fetchInBackground()
Fetches this object with the data from the server in a background thread. |
|
|
ParseObject.fetchInBackground(GetCallback<T> callback)
Fetches this object with the data from the server in a background thread. |
|
static
|
ParseQuery.getQuery(Class<T> subclass)
Creates a new query for the given ParseObject subclass type. |
|
static
|
ParseQuery.getQuery(String className)
Creates a new query for the given class name. |
|
|
ParseObject.getRelation(String key)
Access or create a Relation value for a key |
|
static
|
ParseQuery.or(List<ParseQuery<T>> queries)
Constructs a query that is the or of the given queries. |
|
static
|
ParseObject.pinAll(List<T> objects)
Stores the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.pinAll(String name,
List<T> objects)
Stores the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.pinAllInBackground(List<T> objects)
Stores the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.pinAllInBackground(List<T> objects,
SaveCallback callback)
Stores the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.pinAllInBackground(String name,
List<T> objects)
Stores the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.pinAllInBackground(String name,
List<T> objects,
SaveCallback callback)
Stores the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.saveAll(List<T> objects)
Saves each object in the provided list. |
|
static
|
ParseObject.saveAllInBackground(List<T> objects)
Saves each object in the provided list to the server in a background thread. |
|
static
|
ParseObject.saveAllInBackground(List<T> objects,
SaveCallback callback)
Saves each object in the provided list to the server in a background thread. |
|
static
|
ParseObject.unpinAll(List<T> objects)
Removes the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.unpinAll(String name,
List<T> objects)
Removes the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.unpinAllInBackground(List<T> objects)
Removes the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.unpinAllInBackground(List<T> objects,
DeleteCallback callback)
Removes the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.unpinAllInBackground(String name,
List<T> objects)
Removes the objects and every object they point to in the local datastore, recursively. |
|
static
|
ParseObject.unpinAllInBackground(String name,
List<T> objects,
DeleteCallback callback)
Removes the objects and every object they point to in the local datastore, recursively. |
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.getParseObject(String key)
Access a ParseObject value. |
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 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. |
Constructor parameters in com.parse with type arguments of type ParseObject | |
---|---|
ParseQueryAdapter(Context context,
Class<? extends ParseObject> clazz)
Constructs a ParseQueryAdapter. |
|
ParseQueryAdapter(Context context,
Class<? extends ParseObject> clazz,
int itemViewResource)
Constructs a ParseQueryAdapter. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |