A B C D E F G H I K L M N O P R S T U V W

A

ACCOUNT_ALREADY_LINKED - Static variable in exception com.parse.ParseException
Error code indicating that an an account being linked is already linked to another user.
ACTION_PUSH_DELETE - Static variable in class com.parse.ParsePushBroadcastReceiver
The name of the Intent fired when a notification has been dismissed.
ACTION_PUSH_OPEN - Static variable in class com.parse.ParsePushBroadcastReceiver
The name of the Intent fired when a notification has been opened.
ACTION_PUSH_RECEIVE - Static variable in class com.parse.ParsePushBroadcastReceiver
The name of the Intent fired when a push has been received.
add(String, Object) - Method in class com.parse.ParseObject
Atomically adds an object to the end of the array associated with a given key.
add(T) - Method in class com.parse.ParseRelation
Adds an object to this relation.
addAll(String, Collection<?>) - Method in class com.parse.ParseObject
Atomically adds the objects contained in a Collection to the end of the array associated with a given key.
addAllUnique(String, Collection<?>) - Method in class com.parse.ParseObject
Atomically adds the objects contained in a Collection to the array associated with a given key, only adding elements which are not already present in the array.
addAscendingOrder(String) - Method in class com.parse.ParseQuery
Also sorts the results in ascending order by the given key.
addDescendingOrder(String) - Method in class com.parse.ParseQuery
Also sorts the results in descending order by the given key.
addOnQueryLoadListener(ParseQueryAdapter.OnQueryLoadListener<T>) - Method in class com.parse.ParseQueryAdapter
 
addUnique(String, Object) - Method in class com.parse.ParseObject
Atomically adds an object to the array associated with a given key, only if it is not already present in the array.

B

become(String) - Static method in class com.parse.ParseUser
Authorize a user with a session token.
becomeInBackground(String) - Static method in class com.parse.ParseUser
Authorize a user with a session token.
becomeInBackground(String, LogInCallback) - Static method in class com.parse.ParseUser
Authorize a user with a session token.

C

CACHE_MISS - Static variable in exception com.parse.ParseException
Error code indicating the result was not found in the cache.
callFunction(String, Map<String, ?>) - Static method in class com.parse.ParseCloud
Calls a cloud function.
callFunctionInBackground(String, Map<String, ?>) - Static method in class com.parse.ParseCloud
Calls a cloud function in the background.
callFunctionInBackground(String, Map<String, ?>, FunctionCallback<T>) - Static method in class com.parse.ParseCloud
Calls a cloud function in the background.
cancel() - Method in class com.parse.ParseFile
Cancels the current network request and callbacks whether it's uploading or fetching data from the server.
cancel() - Method in class com.parse.ParseQuery
Cancels the current network request (if one is running).
clear() - Method in class com.parse.ParseQueryAdapter
Remove all elements from the list.
clearAllCachedResults() - Static method in class com.parse.ParseQuery
Clears the cached result for all queries.
clearCachedResult() - Method in class com.parse.ParseQuery
Removes the previously cached result for this query, forcing the next find() to hit the network.
clearExpiration() - Method in class com.parse.ParsePush
Clears both expiration values, indicating that the notification should never expire.
com.parse - package com.parse
 
COMMAND_UNAVAILABLE - Static variable in exception com.parse.ParseException
Error code indicating that the feature you tried to access is only available internally for testing purposes.
ConfigCallback - Class in com.parse
 
ConfigCallback() - Constructor for class com.parse.ConfigCallback
 
CONNECTION_FAILED - Static variable in exception com.parse.ParseException
Error code indicating the connection to the Parse servers failed.
containsKey(String) - Method in class com.parse.ParseObject
Whether this object has a particular key.
count() - Method in class com.parse.ParseQuery
Counts the number of objects that match this query.
CountCallback - Class in com.parse
A CountCallback is used to run code after a ParseQuery is used to count objects matching a query in a background thread.
CountCallback() - Constructor for class com.parse.CountCallback
 
countInBackground() - Method in class com.parse.ParseQuery
Counts the number of objects that match this query in a background thread.
countInBackground(CountCallback) - Method in class com.parse.ParseQuery
Counts the number of objects that match this query in a background thread.
create(String) - Static method in class com.parse.ParseObject
Creates a new ParseObject based upon a class name.
create(Class<T>) - Static method in class com.parse.ParseObject
Creates a new ParseObject based upon a subclass type.
create() - Method in interface com.parse.ParseQueryAdapter.QueryFactory
 
createWithoutData(String, String) - Static method in class com.parse.ParseObject
Creates a reference to an existing ParseObject for use in creating associations between ParseObjects.
createWithoutData(Class<T>, String) - Static method in class com.parse.ParseObject
Creates a reference to an existing ParseObject for use in creating associations between ParseObjects.

D

DEFAULT_PIN - Static variable in class com.parse.ParseObject
Default name for pinning if not specified.
delete() - Method in class com.parse.ParseObject
Deletes this object on the server.
deleteAll(List<T>) - Static method in class com.parse.ParseObject
Deletes each object in the provided list.
deleteAllInBackground(List<T>, DeleteCallback) - Static method in class com.parse.ParseObject
Deletes each object in the provided list.
deleteAllInBackground(List<T>) - Static method in class com.parse.ParseObject
Deletes each object in the provided list.
DeleteCallback - Class in com.parse
A DeleteCallback is used to run code after saving a ParseObject in a background thread.
DeleteCallback() - Constructor for class com.parse.DeleteCallback
 
deleteEventually(DeleteCallback) - Method in class com.parse.ParseObject
Deletes this object from the server at some unspecified time in the future, even if Parse is currently inaccessible.
deleteEventually() - Method in class com.parse.ParseObject
Deletes this object from the server at some unspecified time in the future, even if Parse is currently inaccessible.
deleteInBackground() - Method in class com.parse.ParseObject
Deletes this object on the server in a background thread.
deleteInBackground(DeleteCallback) - Method in class com.parse.ParseObject
Deletes this object on the server in a background thread.
distanceInKilometersTo(ParseGeoPoint) - Method in class com.parse.ParseGeoPoint
Get distance between this point and another geopoint in kilometers.
distanceInMilesTo(ParseGeoPoint) - Method in class com.parse.ParseGeoPoint
Get distance between this point and another geopoint in kilometers.
distanceInRadiansTo(ParseGeoPoint) - Method in class com.parse.ParseGeoPoint
Get distance in radians between this point and another GeoPoint.
done(ParseConfig, ParseException) - Method in class com.parse.ConfigCallback
 
done(int, ParseException) - Method in class com.parse.CountCallback
Override this function with the code you want to run after the count is complete.
done(ParseException) - Method in class com.parse.DeleteCallback
Override this function with the code you want to run after the delete is complete.
done(List<T>, ParseException) - Method in class com.parse.FindCallback
Override this function with the code you want to run after the fetch is complete.
done(T, ParseException) - Method in class com.parse.FunctionCallback
Override this function with the code you want to run after the cloud function is complete.
done(T, ParseException) - Method in class com.parse.GetCallback
Override this function with the code you want to run after the fetch is complete.
done(byte[], ParseException) - Method in class com.parse.GetDataCallback
 
done(ParseGeoPoint, ParseException) - Method in class com.parse.LocationCallback
Override this function with the code you want to run after the location fetch is complete.
done(ParseUser, ParseException) - Method in class com.parse.LogInCallback
Override this function with the code you want to run after the save is complete.
done(Integer) - Method in class com.parse.ProgressCallback
Override this function with your desired callback.
done(ParseObject, ParseException) - Method in class com.parse.RefreshCallback
Override this function with the code you want to run after the save is complete.
done(ParseException) - Method in class com.parse.RequestPasswordResetCallback
Override this function with the code you want to run after the request is complete.
done(ParseException) - Method in class com.parse.SaveCallback
Override this function with the code you want to run after the save is complete.
done(ParseException) - Method in class com.parse.SendCallback
Override this function with the code you want to run after the send is complete.
done(ParseException) - Method in class com.parse.SignUpCallback
Override this function with the code you want to run after the signUp is complete.
DUPLICATE_VALUE - Static variable in exception com.parse.ParseException
Error code indicating that a unique field was given a value that is already taken.

E

EMAIL_MISSING - Static variable in exception com.parse.ParseException
Error code indicating that the email is missing, but must be specified.
EMAIL_NOT_FOUND - Static variable in exception com.parse.ParseException
Error code indicating that a user with the specified email was not found.
EMAIL_TAKEN - Static variable in exception com.parse.ParseException
Error code indicating that the email has already been taken.
enableAutomaticUser() - Static method in class com.parse.ParseUser
Enables automatic creation of anonymous users.
enableLocalDatastore(Context) - Static method in class com.parse.Parse
Enable pinning in your application.
EXCEEDED_QUOTA - Static variable in exception com.parse.ParseException
Error code indicating that an application quota was exceeded.
extendAccessToken(ParseUser, Context, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
Deprecated. This is now handled automatically by the Facebook SDK.
extendAccessTokenIfNeeded(ParseUser, Context, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
Deprecated. This is now handled automatically by the Facebook SDK.

F

fetch() - Method in class com.parse.ParseObject
Fetches this object with the data from the server.
fetch() - Method in class com.parse.ParseUser
 
fetchAll(List<T>) - Static method in class com.parse.ParseObject
Fetches all the objects in the provided list.
fetchAllIfNeeded(List<T>) - Static method in class com.parse.ParseObject
Fetches all the objects that don't have data in the provided list.
fetchAllIfNeededInBackground(List<T>) - Static method in class com.parse.ParseObject
Fetches all the objects that don't have data in the provided list in the background.
fetchAllIfNeededInBackground(List<T>, FindCallback<T>) - Static method in class com.parse.ParseObject
Fetches all the objects that don't have data in the provided list in the background.
fetchAllInBackground(List<T>) - Static method in class com.parse.ParseObject
Fetches all the objects in the provided list in the background.
fetchAllInBackground(List<T>, FindCallback<T>) - Static method in class com.parse.ParseObject
Fetches all the objects in the provided list in the background.
fetchFromLocalDatastore() - Method in class com.parse.ParseObject
Loads data from the local datastore into this object, if it has not been fetched from the server already.
fetchFromLocalDatastoreInBackground(GetCallback<T>) - Method in class com.parse.ParseObject
Loads data from the local datastore into this object, if it has not been fetched from the server already.
fetchIfNeeded() - Method in class com.parse.ParseObject
If this ParseObject has not been fetched (i.e.
fetchIfNeeded() - Method in class com.parse.ParseUser
 
fetchIfNeededInBackground() - Method in class com.parse.ParseObject
If this ParseObject has not been fetched (i.e.
fetchIfNeededInBackground(GetCallback<T>) - Method in class com.parse.ParseObject
If this ParseObject has not been fetched (i.e.
fetchInBackground() - Method in class com.parse.ParseObject
Fetches this object with the data from the server in a background thread.
fetchInBackground(GetCallback<T>) - Method in class com.parse.ParseObject
Fetches this object with the data from the server in a background thread.
FILE_DELETE_ERROR - Static variable in exception com.parse.ParseException
Error code indicating that deleting a file failed.
find() - Method in class com.parse.ParseQuery
Retrieves a list of ParseObjects that satisfy this query.
FindCallback<T extends ParseObject> - Class in com.parse
A FindCallback is used to run code after a ParseQuery is used to fetch a list of ParseObjects in a background thread.
FindCallback() - Constructor for class com.parse.FindCallback
 
findInBackground() - Method in class com.parse.ParseQuery
Retrieves a list of ParseObjects that satisfy this query from the source in a background thread.
findInBackground(FindCallback<T>) - Method in class com.parse.ParseQuery
Retrieves a list of ParseObjects that satisfy this query from the source in a background thread.
finishAuthentication(int, int, Intent) - Static method in class com.parse.ParseFacebookUtils
Completes authentication after the Facebook app returns an activity result.
fromLocalDatastore() - Method in class com.parse.ParseQuery
Change the source of this query to all pinned objects.
fromPin() - Method in class com.parse.ParseQuery
Change the source of this query to the default group of pinned objects.
fromPin(String) - Method in class com.parse.ParseQuery
Change the source of this query to a specific group of pinned objects.
FunctionCallback<T> - Class in com.parse
A FunctionCallback is used to run code after ParseCloud.callFunction(java.lang.String, java.util.Map) is used to run a Cloud Function in a background thread.
FunctionCallback() - Constructor for class com.parse.FunctionCallback
 

G

get() - Static method in class com.parse.ParseConfig
Fetches a new configuration object from the server.
get(String) - Method in class com.parse.ParseConfig
Access a value.
get(String, Object) - Method in class com.parse.ParseConfig
Access a value, returning a default value if the key doesn't exist.
get(String) - Method in class com.parse.ParseObject
Access a value.
get(String) - Method in class com.parse.ParseQuery
Constructs a ParseObject whose id is already known by fetching data from the source.
getACL() - Method in class com.parse.ParseObject
Access the ParseACL governing this object.
getActivity(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Used by onPushOpen to determine which activity to launch or insert into the back stack.
getBoolean(String) - Method in class com.parse.ParseConfig
Access a boolean value.
getBoolean(String, boolean) - Method in class com.parse.ParseConfig
Access a boolean value, returning a default value if it doesn't exist.
getBoolean(String) - Method in class com.parse.ParseObject
Access a boolean value.
getBytes(String) - Method in class com.parse.ParseObject
Access a byte array value.
getCachePolicy() - Method in class com.parse.ParseQuery
Accessor for the caching policy.
GetCallback<T extends ParseObject> - Class in com.parse
A GetCallback is used to run code after a ParseQuery is used to fetch a ParseObject in a background thread.
GetCallback() - Constructor for class com.parse.GetCallback
 
getClassName() - Method in class com.parse.ParseObject
Accessor to the class name.
getClassName() - Method in class com.parse.ParseQuery
Accessor for the class name.
getCode() - Method in exception com.parse.ParseException
Access the code for this error.
getContext() - Method in class com.parse.ParseQueryAdapter
Return the context provided by the Activity utilizing this ParseQueryAdapter.
getCount() - Method in class com.parse.ParseQueryAdapter
Overrides Adapter's ParseQueryAdapter.getCount() method to return the number of cells to display.
getCreatedAt() - Method in class com.parse.ParseObject
This reports time as the server sees it, so that if you create a ParseObject, then wait a while, and then call save(), the creation time will be the time of the first save() call rather than the time the object was created locally.
getCurrentConfig() - Static method in class com.parse.ParseConfig
Retrieves the most recently-fetched configuration object, either from memory or disk if necessary.
getCurrentInstallation() - Static method in class com.parse.ParseInstallation
 
getCurrentLocationInBackground(long) - Static method in class com.parse.ParseGeoPoint
Fetches the user's current location and returns a new ParseGeoPoint via the provided LocationCallback.
getCurrentLocationInBackground(long, LocationCallback) - Static method in class com.parse.ParseGeoPoint
Fetches the user's current location and returns a new ParseGeoPoint via the provided LocationCallback.
getCurrentLocationInBackground(long, Criteria) - Static method in class com.parse.ParseGeoPoint
Fetches the user's current location and returns a new ParseGeoPoint via the provided LocationCallback.
getCurrentLocationInBackground(long, Criteria, LocationCallback) - Static method in class com.parse.ParseGeoPoint
Fetches the user's current location and returns a new ParseGeoPoint via the provided LocationCallback.
getCurrentUser() - Static method in class com.parse.ParseUser
This retrieves the currently logged in ParseUser with a valid session, either from memory or disk if necessary.
getData() - Method in class com.parse.ParseFile
Synchronously gets the data for this object.
GetDataCallback - Class in com.parse
A GetDataCallback is used to run code after a ParseFile fetches its data on a background thread.
GetDataCallback() - Constructor for class com.parse.GetDataCallback
 
getDataInBackground(ProgressCallback) - Method in class com.parse.ParseFile
Gets the data for this object in a background thread.
getDataInBackground() - Method in class com.parse.ParseFile
Gets the data for this object in a background thread.
getDataInBackground(GetDataCallback, ProgressCallback) - Method in class com.parse.ParseFile
Gets the data for this object in a background thread.
getDataInBackground(GetDataCallback) - Method in class com.parse.ParseFile
Gets the data for this object in a background thread.
getDate(String) - Method in class com.parse.ParseConfig
Access a date value.
getDate(String, Date) - Method in class com.parse.ParseConfig
Access a date value, returning a default value if it doesn't exist.
getDate(String) - Method in class com.parse.ParseObject
Access a Date value.
getDouble(String) - Method in class com.parse.ParseConfig
Access a double value.
getDouble(String, double) - Method in class com.parse.ParseConfig
Access a double value, returning a default value if it doesn't exist.
getDouble(String) - Method in class com.parse.ParseObject
Access a double value.
getEmail() - Method in class com.parse.ParseUser
Retrieves the email address.
getFacebook() - Static method in class com.parse.ParseFacebookUtils
Deprecated. Please use ParseFacebookUtils.getSession() and related Facebook SDK 3.0+ APIs instead.
getFirst() - Method in class com.parse.ParseQuery
Retrieves at most one ParseObject that satisfies this query.
getFirstInBackground() - Method in class com.parse.ParseQuery
Retrieves at most one ParseObject that satisfies this query from the source in a background thread.
getFirstInBackground(GetCallback<T>) - Method in class com.parse.ParseQuery
Retrieves at most one ParseObject that satisfies this query from the source in a background thread.
getInBackground(ConfigCallback) - Static method in class com.parse.ParseConfig
Fetches a new configuration object from the server in a background thread.
getInBackground() - Static method in class com.parse.ParseConfig
Fetches a new configuration object from the server in a background thread.
getInBackground(String) - Method in class com.parse.ParseQuery
Constructs a ParseObject whose id is already known by fetching data from the source in a background thread.
getInBackground(String, GetCallback<T>) - Method in class com.parse.ParseQuery
Constructs a ParseObject whose id is already known by fetching data from the source in a background thread.
getInstallationId() - Method in class com.parse.ParseInstallation
Returns the unique ID of this installation.
getInt(String) - Method in class com.parse.ParseConfig
Access an int value.
getInt(String, int) - Method in class com.parse.ParseConfig
Access an int value, returning a default value if it doesn't exist.
getInt(String) - Method in class com.parse.ParseObject
Access an int value.
getItem(int) - Method in class com.parse.ParseQueryAdapter
getItemId(int) - Method in class com.parse.ParseQueryAdapter
getItemView(T, View, ViewGroup) - Method in class com.parse.ParseQueryAdapter
Override this method to customize each cell given a ParseObject.
getItemViewType(int) - Method in class com.parse.ParseQueryAdapter
 
getJSONArray(String) - Method in class com.parse.ParseConfig
Access a JSONArray value.
getJSONArray(String, JSONArray) - Method in class com.parse.ParseConfig
Access a JSONArray value, returning a default value if it doesn't exist.
getJSONArray(String) - Method in class com.parse.ParseObject
Access a JSONArray value.
getJSONObject(String) - Method in class com.parse.ParseConfig
Access a JSONObject value.
getJSONObject(String, JSONObject) - Method in class com.parse.ParseConfig
Access a JSONObject value, returning a default value if it doesn't exist.
getJSONObject(String) - Method in class com.parse.ParseObject
Access a JSONObject value.
getLargeIcon(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Retrieves the large icon to be used in a Notification.
getLatitude() - Method in class com.parse.ParseGeoPoint
Get latitude.
getLimit() - Method in class com.parse.ParseQuery
Accessor for the limit.
getList(String) - Method in class com.parse.ParseConfig
Access a List value.
getList(String, List<T>) - Method in class com.parse.ParseConfig
Access a List value, returning a default value if it doesn't exist.
getList(String) - Method in class com.parse.ParseObject
Access a List value.
getLogLevel() - Static method in class com.parse.Parse
Gets the level of logging that will be displayed.
getLong(String) - Method in class com.parse.ParseConfig
Access a long value.
getLong(String, long) - Method in class com.parse.ParseConfig
Access a long value, returning a default value if it doesn't exist.
getLong(String) - Method in class com.parse.ParseObject
Access a long value.
getLongitude() - Method in class com.parse.ParseGeoPoint
Get longitude.
getMap(String) - Method in class com.parse.ParseConfig
Access a Map value.
getMap(String, Map<String, V>) - Method in class com.parse.ParseConfig
Access a Map value, returning a default value if it doesn't exist.
getMap(String) - Method in class com.parse.ParseObject
Access a Map value
getMaxCacheAge() - Method in class com.parse.ParseQuery
Gets the maximum age of cached data that will be considered in this query.
getName() - Method in class com.parse.ParseFile
The filename.
getName() - Method in class com.parse.ParseRole
Gets the name of the role.
getNextPageView(View, ViewGroup) - Method in class com.parse.ParseQueryAdapter
Override this method to customize the "Load Next Page" cell, visible when pagination is turned on and there may be more results to display.
getNotification(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Creates a Notification with reasonable defaults.
getNumber(String) - Method in class com.parse.ParseConfig
Access a numerical value.
getNumber(String, Number) - Method in class com.parse.ParseConfig
Access a numerical value, returning a default value if it doesn't exist.
getNumber(String) - Method in class com.parse.ParseObject
Access a numerical value.
getObjectId() - Method in class com.parse.ParseObject
Accessor to the object id.
getObjectsPerPage() - Method in class com.parse.ParseQueryAdapter
 
getParseFile(String) - Method in class com.parse.ParseConfig
Access a ParseFile value.
getParseFile(String, ParseFile) - Method in class com.parse.ParseConfig
Access a ParseFile value, returning a default value if it doesn't exist.
getParseFile(String) - Method in class com.parse.ParseObject
Access a ParseFile value.
getParseGeoPoint(String) - Method in class com.parse.ParseConfig
Access a ParseGeoPoint value.
getParseGeoPoint(String, ParseGeoPoint) - Method in class com.parse.ParseConfig
Access a ParseGeoPoint value, returning a default value if it doesn't exist.
getParseGeoPoint(String) - Method in class com.parse.ParseObject
Access a ParseGeoPoint value.
getParseObject(String) - Method in class com.parse.ParseObject
Access a ParseObject value.
getParseUser(String) - Method in class com.parse.ParseObject
Access a ParseUser value.
getPublicReadAccess() - Method in class com.parse.ParseACL
Get whether the public is allowed to read this object.
getPublicWriteAccess() - Method in class com.parse.ParseACL
Set whether the public is allowed to write this object.
getQuery() - Static method in class com.parse.ParseInstallation
Constructs a query for ParseInstallations.
getQuery(Class<T>) - Static method in class com.parse.ParseQuery
Creates a new query for the given ParseObject subclass type.
getQuery(String) - Static method in class com.parse.ParseQuery
Creates a new query for the given class name.
getQuery() - Method in class com.parse.ParseRelation
Gets a query that can be used to query the objects in this relation.
getQuery() - Static method in class com.parse.ParseRole
Gets a ParseQuery over the Role collection.
getQuery() - Static method in class com.parse.ParseUser
Constructs a query for ParseUsers.
getReadAccess(String) - Method in class com.parse.ParseACL
Get whether the given user id is *explicitly* allowed to read this object.
getReadAccess(ParseUser) - Method in class com.parse.ParseACL
Get whether the given user id is *explicitly* allowed to read this object.
getRelation(String) - Method in class com.parse.ParseObject
Access or create a Relation value for a key
getRoleReadAccess(String) - Method in class com.parse.ParseACL
Get whether users belonging to the role with the given roleName are allowed to read this object.
getRoleReadAccess(ParseRole) - Method in class com.parse.ParseACL
Get whether users belonging to the given role are allowed to read this object.
getRoles() - Method in class com.parse.ParseRole
Gets the ParseRelation for the ParseRoles that are direct children of this role.
getRoleWriteAccess(String) - Method in class com.parse.ParseACL
Get whether users belonging to the role with the given roleName are allowed to write this object.
getRoleWriteAccess(ParseRole) - Method in class com.parse.ParseACL
Get whether users belonging to the given role are allowed to write this object.
getSession() - Static method in class com.parse.ParseFacebookUtils
 
getSessionToken() - Method in class com.parse.ParseUser
Retrieves the session token for a user, if they are logged in.
getSkip() - Method in class com.parse.ParseQuery
Accessor for the skip value.
getSmallIconId(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Retrieves the small icon to be used in a Notification.
getString(String) - Method in class com.parse.ParseConfig
Access a string value.
getString(String, String) - Method in class com.parse.ParseConfig
Access a string value, returning a default value if it doesn't exist.
getString(String) - Method in class com.parse.ParseObject
Access a string value.
getSubscriptions(Context) - Static method in class com.parse.PushService
Deprecated. Subscriptions are stored in the ParseInstallation "channels" field. Use ParseInstallation.getCurrentInstallation().getList<String>("channels")
getTwitter() - Static method in class com.parse.ParseTwitterUtils
Gets the shared Twitter singleton that Parse is using.
getUpdatedAt() - Method in class com.parse.ParseObject
This reports time as the server sees it, so that if you make changes to a ParseObject, then wait a while, and then call save(), the updated time will be the time of the save() call rather than the time the object was changed locally.
getUrl() - Method in class com.parse.ParseFile
This returns the url of the file.
getUsername() - Method in class com.parse.ParseUser
Retrieves the username.
getUserQuery() - Static method in class com.parse.ParseQuery
Deprecated. Please use ParseUser.getQuery() instead.
getUsers() - Method in class com.parse.ParseRole
Gets the ParseRelation for the ParseUsers that are direct children of this role.
getView(int, View, ViewGroup) - Method in class com.parse.ParseQueryAdapter
The base class, Adapter, defines a getView method intended to display data at the specified position in the data set.
getViewTypeCount() - Method in class com.parse.ParseQueryAdapter
 
getWriteAccess(String) - Method in class com.parse.ParseACL
Get whether the given user id is *explicitly* allowed to write this object.
getWriteAccess(ParseUser) - Method in class com.parse.ParseACL
Get whether the given user id is *explicitly* allowed to write this object.

H

has(String) - Method in class com.parse.ParseObject
Whether this object has a particular key.
hasCachedResult() - Method in class com.parse.ParseQuery
Returns whether or not this query has a cached result.
hasSameId(ParseObject) - Method in class com.parse.ParseObject
 

I

include(String) - Method in class com.parse.ParseQuery
Include nested ParseObjects for the provided key.
INCORRECT_TYPE - Static variable in exception com.parse.ParseException
Error code indicating that a field was set to an inconsistent type.
increment(String) - Method in class com.parse.ParseObject
Atomically increments the given key by 1.
increment(String, Number) - Method in class com.parse.ParseObject
Atomically increments the given key by the given number.
initialize(Context, String, String) - Static method in class com.parse.Parse
Authenticates this client as belonging to your application.
initialize() - Static method in class com.parse.ParseFacebookUtils
 
initialize(String) - Static method in class com.parse.ParseFacebookUtils
Initializes Facebook for use with Parse.
initialize(String, String) - Static method in class com.parse.ParseTwitterUtils
Initializes Twitter for use with Parse.
INTERNAL_SERVER_ERROR - Static variable in exception com.parse.ParseException
Error code indicating that something has gone wrong with the server.
INVALID_ACL - Static variable in exception com.parse.ParseException
Error code indicating an invalid ACL was provided.
INVALID_CHANNEL_NAME - Static variable in exception com.parse.ParseException
Error code indicating an invalid channel name.
INVALID_CLASS_NAME - Static variable in exception com.parse.ParseException
Error code indicating a missing or invalid classname.
INVALID_EMAIL_ADDRESS - Static variable in exception com.parse.ParseException
Error code indicating that the email address was invalid.
INVALID_EVENT_NAME - Static variable in exception com.parse.ParseException
Error code indicating that the provided event name is invalid.
INVALID_FILE_NAME - Static variable in exception com.parse.ParseException
Error code indicating that an invalid filename was used for ParseFile.
INVALID_JSON - Static variable in exception com.parse.ParseException
Error code indicating that badly formed JSON was received upstream.
INVALID_KEY_NAME - Static variable in exception com.parse.ParseException
Error code indicating an invalid key name.
INVALID_LINKED_SESSION - Static variable in exception com.parse.ParseException
Error code indicating that a user with a linked (e.g.
INVALID_NESTED_KEY - Static variable in exception com.parse.ParseException
Error code indicating that an invalid key was used in a nested JSONObject.
INVALID_POINTER - Static variable in exception com.parse.ParseException
Error code indicating a malformed pointer.
INVALID_QUERY - Static variable in exception com.parse.ParseException
Error code indicating you tried to query with a datatype that doesn't support it, like exact matching an array or object.
INVALID_ROLE_NAME - Static variable in exception com.parse.ParseException
Error code indicating that a role's name is invalid.
isAuthenticated() - Method in class com.parse.ParseUser
Whether the ParseUser has been authenticated on this device.
isDataAvailable() - Method in class com.parse.ParseFile
Whether the file has available data.
isDataAvailable() - Method in class com.parse.ParseObject
Gets whether the ParseObject has been fetched.
isDirty() - Method in class com.parse.ParseFile
Whether the file still needs to be saved.
isDirty() - Method in class com.parse.ParseObject
Whether any key-value pair in this object (or its children) has been added/updated/removed and not saved yet.
isDirty(String) - Method in class com.parse.ParseObject
Whether a value associated with a key has been added/updated/removed and not saved yet.
isLinked(ParseUser) - Static method in class com.parse.ParseAnonymousUtils
Whether the user is logged in anonymously.
isLinked(ParseUser) - Static method in class com.parse.ParseFacebookUtils
 
isLinked(ParseUser) - Static method in class com.parse.ParseTwitterUtils
 
isNew() - Method in class com.parse.ParseUser
Indicates whether this ParseUser was created during this session through a call to ParseUser.signUp() or by logging in with a linked service such as Facebook.

K

KEY_PUSH_CHANNEL - Static variable in class com.parse.ParsePushBroadcastReceiver
The name of the Intent extra which contains a channel used to route this notification.
KEY_PUSH_DATA - Static variable in class com.parse.ParsePushBroadcastReceiver
The name of the Intent extra which contains the JSON payload of the Notification.
keySet() - Method in class com.parse.ParseObject
Returns a set view of the keys contained in this object.

L

link(ParseUser, String, String, Date) - Static method in class com.parse.ParseFacebookUtils
Deprecated. Please use ParseFacebookUtils.linkInBackground(ParseUser, String, String, java.util.Date) instead.
link(ParseUser, String, String, Date, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user.
link(ParseUser, Collection<String>, Activity, int, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user.
link(ParseUser, Collection<String>, Activity, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
Links a user using the default activity code if single sign-on is enabled.
link(ParseUser, Collection<String>, Activity, int) - Static method in class com.parse.ParseFacebookUtils
Deprecated. Please use ParseFacebookUtils.linkInBackground(ParseUser, java.util.Collection, android.app.Activity, int) instead.
link(ParseUser, Collection<String>, Activity) - Static method in class com.parse.ParseFacebookUtils
Deprecated. Please use ParseFacebookUtils.linkInBackground(ParseUser, java.util.Collection, android.app.Activity) instead.
link(ParseUser, Activity, int, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
 
link(ParseUser, Activity, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
 
link(ParseUser, Activity, int) - Static method in class com.parse.ParseFacebookUtils
Deprecated. Please use ParseFacebookUtils.linkInBackground(ParseUser, android.app.Activity, int) instead.
link(ParseUser, Activity) - Static method in class com.parse.ParseFacebookUtils
Deprecated. Please use ParseFacebookUtils.linkInBackground(ParseUser, android.app.Activity) instead.
link(ParseUser, Context) - Static method in class com.parse.ParseTwitterUtils
Deprecated. Please use ParseTwitterUtils.linkInBackground(Context, ParseUser) instead.
link(ParseUser, Context, SaveCallback) - Static method in class com.parse.ParseTwitterUtils
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and providing access to Twitter data for the user.
link(ParseUser, String, String, String, String) - Static method in class com.parse.ParseTwitterUtils
Deprecated. Please use ParseTwitterUtils.linkInBackground(ParseUser, String, String, String, String) instead.
link(ParseUser, String, String, String, String, SaveCallback) - Static method in class com.parse.ParseTwitterUtils
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and providing access to Twitter data for the user.
LINKED_ID_MISSING - Static variable in exception com.parse.ParseException
Error code indicating that a user cannot be linked to an account because that account's id could not be found.
linkInBackground(ParseUser, String, String, Date) - Static method in class com.parse.ParseFacebookUtils
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user.
linkInBackground(ParseUser, Collection<String>, Activity, int) - Static method in class com.parse.ParseFacebookUtils
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and providing access to Facebook data for the user.
linkInBackground(ParseUser, Collection<String>, Activity) - Static method in class com.parse.ParseFacebookUtils
 
linkInBackground(ParseUser, Activity, int) - Static method in class com.parse.ParseFacebookUtils
 
linkInBackground(ParseUser, Activity) - Static method in class com.parse.ParseFacebookUtils
 
linkInBackground(Context, ParseUser) - Static method in class com.parse.ParseTwitterUtils
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and providing access to Twitter data for the user.
linkInBackground(ParseUser, String, String, String, String) - Static method in class com.parse.ParseTwitterUtils
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and providing access to Twitter data for the user.
loadInBackground() - Method in class com.parse.ParseImageView
Kick off downloading of remote image.
loadInBackground(GetDataCallback) - Method in class com.parse.ParseImageView
Kick off downloading of remote image.
loadNextPage() - Method in class com.parse.ParseQueryAdapter
Loads the next page of objects, appends to table, and notifies the UI that the model has changed.
loadObjects() - Method in class com.parse.ParseQueryAdapter
Clears the table and loads the first page of objects asynchronously.
LocationCallback - Class in com.parse
A LocationCallback is used to run code after a Location has been fetched by some LocationProvider.
LocationCallback() - Constructor for class com.parse.LocationCallback
 
LOG_LEVEL_DEBUG - Static variable in class com.parse.Parse
 
LOG_LEVEL_ERROR - Static variable in class com.parse.Parse
 
LOG_LEVEL_INFO - Static variable in class com.parse.Parse
 
LOG_LEVEL_NONE - Static variable in class com.parse.Parse
 
LOG_LEVEL_VERBOSE - Static variable in class com.parse.Parse
 
LOG_LEVEL_WARNING - Static variable in class com.parse.Parse
 
logIn(LogInCallback) - Static method in class com.parse.ParseAnonymousUtils
Creates an anonymous user in the background.
logIn(String, String, Date, LogInCallback) - Static method in class com.parse.ParseFacebookUtils
Logs in a ParseUser using Facebook for authentication.
logIn(Collection<String>, Activity, int, LogInCallback) - Static method in class com.parse.ParseFacebookUtils
Logs in a ParseUser using Facebook for authentication.
logIn(Activity, int, LogInCallback) - Static method in class com.parse.ParseFacebookUtils
 
logIn(Collection<String>, Activity, LogInCallback) - Static method in class com.parse.ParseFacebookUtils
Logs in a user using the default activity code if single sign-on is enabled.
logIn(Activity, LogInCallback) - Static method in class com.parse.ParseFacebookUtils
 
logIn(String, String, String, String, LogInCallback) - Static method in class com.parse.ParseTwitterUtils
Logs in a ParseUser using Twitter for authentication.
logIn(Context, LogInCallback) - Static method in class com.parse.ParseTwitterUtils
Logs in a ParseUser using Twitter for authentication.
logIn(String, String) - Static method in class com.parse.ParseUser
Logs in a user with a username and password.
LogInCallback - Class in com.parse
A LogInCallback is used to run code after logging in a user.
LogInCallback() - Constructor for class com.parse.LogInCallback
 
logInInBackground() - Static method in class com.parse.ParseAnonymousUtils
Creates an anonymous user in the background.
logInInBackground(String, String, Date) - Static method in class com.parse.ParseFacebookUtils
Logs in a ParseUser using Facebook for authentication.
logInInBackground(Collection<String>, Activity, int) - Static method in class com.parse.ParseFacebookUtils
Logs in a ParseUser using Facebook for authentication.
logInInBackground(String, String, String, String) - Static method in class com.parse.ParseTwitterUtils
Logs in a ParseUser using Twitter for authentication.
logInInBackground(Context) - Static method in class com.parse.ParseTwitterUtils
Logs in a ParseUser using Twitter for authentication.
logInInBackground(String, String) - Static method in class com.parse.ParseUser
Logs in a user with a username and password.
logInInBackground(String, String, LogInCallback) - Static method in class com.parse.ParseUser
Logs in a user with a username and password.
logOut() - Static method in class com.parse.ParseUser
Logs out the currently logged in user session.

M

MISSING_OBJECT_ID - Static variable in exception com.parse.ParseException
Error code indicating an unspecified object id.
MUST_CREATE_USER_THROUGH_SIGNUP - Static variable in exception com.parse.ParseException
Error code indicating that a user can only be created through signup.

N

NOT_INITIALIZED - Static variable in exception com.parse.ParseException
You must call Parse.initialize before using the Parse library.

O

OBJECT_NOT_FOUND - Static variable in exception com.parse.ParseException
Error code indicating the specified object doesn't exist.
OBJECT_TOO_LARGE - Static variable in exception com.parse.ParseException
Error code indicating that the object is too large.
onBind(Intent) - Method in class com.parse.PushService
onBind should not be called directly.
onCreate() - Method in class com.parse.PushService
Client code should not call onCreate directly.
onDestroy() - Method in class com.parse.PushService
Client code should not call onDestroy directly.
onDetachedFromWindow() - Method in class com.parse.ParseImageView
 
onLoaded(List<T>, Exception) - Method in interface com.parse.ParseQueryAdapter.OnQueryLoadListener
 
onLoading() - Method in interface com.parse.ParseQueryAdapter.OnQueryLoadListener
 
onPushDismiss(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Called when the push notification is dismissed.
onPushOpen(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Called when the push notification is opened by the user.
onPushReceive(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Called when the push notification is received.
onReceive(Context, Intent) - Method in class com.parse.ParsePushBroadcastReceiver
Delegates the generic onReceive event to a notification lifecycle event.
onStartCommand(Intent, int, int) - Method in class com.parse.PushService
 
OPERATION_FORBIDDEN - Static variable in exception com.parse.ParseException
Error code indicating that the operation isn't allowed for clients.
or(List<ParseQuery<T>>) - Static method in class com.parse.ParseQuery
Constructs a query that is the or of the given queries.
orderByAscending(String) - Method in class com.parse.ParseQuery
Sorts the results in ascending order by the given key.
orderByDescending(String) - Method in class com.parse.ParseQuery
Sorts the results in descending order by the given key.
OTHER_CAUSE - Static variable in exception com.parse.ParseException
 

P

Parse - Class in com.parse
The Parse class contains static functions that handle global configuration for the Parse library.
ParseACL - Class in com.parse
A ParseACL is used to control which users can access or modify a particular object.
ParseACL() - Constructor for class com.parse.ParseACL
Creates an ACL with no permissions granted.
ParseACL(ParseUser) - Constructor for class com.parse.ParseACL
Creates an ACL where only the provided user has access.
ParseAnalytics - Class in com.parse
The ParseAnalytics class provides an interface to Parse's logging and analytics backend.
ParseAnalytics() - Constructor for class com.parse.ParseAnalytics
 
ParseAnonymousUtils - Class in com.parse
Provides utility functions for working with Anonymously logged-in users.
ParseClassName - Annotation Type in com.parse
Associates a class name for a subclass of ParseObject.
ParseCloud - Class in com.parse
The ParseCloud class defines provides methods for interacting with Parse Cloud Functions.
ParseConfig - Class in com.parse
The ParseConfig is a local representation of configuration data that can be set from the Parse dashboard.
ParseException - Exception in com.parse
A ParseException gets raised whenever a ParseObject issues an invalid request, such as deleting or editing an object that no longer exists on the server, or when there is a network failure preventing communication with the Parse server.
ParseException(int, String) - Constructor for exception com.parse.ParseException
Construct a new ParseException with a particular error code.
ParseException(String, Throwable) - Constructor for exception com.parse.ParseException
Construct a new ParseException with an external cause.
ParseException(Throwable) - Constructor for exception com.parse.ParseException
Construct a new ParseException with an external cause.
ParseFacebookUtils - Class in com.parse
Provides a set of utilities for using Parse with Facebook.
ParseFile - Class in com.parse
ParseFile is a local representation of a file that is saved to the Parse cloud.
ParseFile(String, byte[], String) - Constructor for class com.parse.ParseFile
Creates a new file from a byte array, file name, and content type.
ParseFile(byte[]) - Constructor for class com.parse.ParseFile
Creates a new file from a byte array.
ParseFile(String, byte[]) - Constructor for class com.parse.ParseFile
Creates a new file from a byte array and a name.
ParseFile(byte[], String) - Constructor for class com.parse.ParseFile
Creates a new file from a byte array, and content type.
ParseGeoPoint - Class in com.parse
ParseGeoPoint represents a latitude / longitude point that may be associated with a key in a ParseObject or used as a reference point for geo queries.
ParseGeoPoint() - Constructor for class com.parse.ParseGeoPoint
Creates a new default point with latitude and longitude set to 0.0.
ParseGeoPoint(double, double) - Constructor for class com.parse.ParseGeoPoint
Creates a new point with the specified latitude and longitude.
ParseImageView - Class in com.parse
A specialized ImageView that downloads and displays remote images stored on Parse's servers.
ParseImageView(Context) - Constructor for class com.parse.ParseImageView
Simple constructor to use when creating a ParseImageView from code.
ParseImageView(Context, AttributeSet) - Constructor for class com.parse.ParseImageView
Constructor that is called when inflating a ParseImageView from XML.
ParseImageView(Context, AttributeSet, int) - Constructor for class com.parse.ParseImageView
Perform inflation from XML and apply a class-specific base style.
ParseInstallation - Class in com.parse
 
ParseInstallation() - Constructor for class com.parse.ParseInstallation
 
ParseObject - Class in com.parse
The ParseObject is a local representation of data that can be saved and retrieved from the Parse cloud.
ParseObject() - Constructor for class com.parse.ParseObject
The base class constructor to call in subclasses.
ParseObject(String) - Constructor for class com.parse.ParseObject
Constructs a new ParseObject with no data in it.
ParsePush - Class in com.parse
The ParsePush is a local representation of data that can be sent as a push notification.
ParsePush() - Constructor for class com.parse.ParsePush
Creates a new push notification.
ParsePushBroadcastReceiver - Class in com.parse
A BroadcastReceiver for rendering and reacting to to Notifications.
ParsePushBroadcastReceiver() - Constructor for class com.parse.ParsePushBroadcastReceiver
 
ParseQuery<T extends ParseObject> - Class in com.parse
The ParseQuery class defines a query that is used to fetch ParseObjects.
ParseQuery(Class<T>) - Constructor for class com.parse.ParseQuery
Constructs a query for a ParseObject subclass type.
ParseQuery(String) - Constructor for class com.parse.ParseQuery
Constructs a query.
ParseQuery.CachePolicy - Enum in com.parse
 
ParseQueryAdapter<T extends ParseObject> - Class in com.parse
A ParseQueryAdapter handles the fetching of objects by page, and displaying objects as views in a ListView.
ParseQueryAdapter(Context, Class<? extends ParseObject>) - Constructor for class com.parse.ParseQueryAdapter
Constructs a ParseQueryAdapter.
ParseQueryAdapter(Context, String) - Constructor for class com.parse.ParseQueryAdapter
Constructs a ParseQueryAdapter.
ParseQueryAdapter(Context, Class<? extends ParseObject>, int) - Constructor for class com.parse.ParseQueryAdapter
Constructs a ParseQueryAdapter.
ParseQueryAdapter(Context, String, int) - Constructor for class com.parse.ParseQueryAdapter
Constructs a ParseQueryAdapter.
ParseQueryAdapter(Context, ParseQueryAdapter.QueryFactory<T>) - Constructor for class com.parse.ParseQueryAdapter
Constructs a ParseQueryAdapter.
ParseQueryAdapter(Context, ParseQueryAdapter.QueryFactory<T>, int) - Constructor for class com.parse.ParseQueryAdapter
Constructs a ParseQueryAdapter.
ParseQueryAdapter.OnQueryLoadListener<T extends ParseObject> - Interface in com.parse
Implement with logic that is called before and after objects are fetched from Parse by the adapter.
ParseQueryAdapter.QueryFactory<T extends ParseObject> - Interface in com.parse
Implement to construct your own custom ParseQuery for fetching objects.
ParseRelation<T extends ParseObject> - Class in com.parse
A class that is used to access all of the children of a many-to-many relationship.
ParseRole - Class in com.parse
Represents a Role on the Parse server.
ParseRole(String) - Constructor for class com.parse.ParseRole
Constructs a new ParseRole with the given name.
ParseRole(String, ParseACL) - Constructor for class com.parse.ParseRole
Constructs a new ParseRole with the given name.
ParseTwitterUtils - Class in com.parse
 
ParseUser - Class in com.parse
 
ParseUser() - Constructor for class com.parse.ParseUser
Constructs a new ParseUser with no data in it.
PASSWORD_MISSING - Static variable in exception com.parse.ParseException
Error code indicating that the password is missing or empty.
pin(String) - Method in class com.parse.ParseObject
Stores the object and every object it points to in the local datastore, recursively.
pin() - Method in class com.parse.ParseObject
Stores the object and every object it points to in the local datastore, recursively.
pinAll(String, List<T>) - Static method in class com.parse.ParseObject
Stores the objects and every object they point to in the local datastore, recursively.
pinAll(List<T>) - Static method in class com.parse.ParseObject
Stores the objects and every object they point to in the local datastore, recursively.
pinAllInBackground(String, List<T>, SaveCallback) - Static method in class com.parse.ParseObject
Stores the objects and every object they point to in the local datastore, recursively.
pinAllInBackground(String, List<T>) - Static method in class com.parse.ParseObject
Stores the objects and every object they point to in the local datastore, recursively.
pinAllInBackground(List<T>, SaveCallback) - Static method in class com.parse.ParseObject
Stores the objects and every object they point to in the local datastore, recursively.
pinAllInBackground(List<T>) - Static method in class com.parse.ParseObject
Stores the objects and every object they point to in the local datastore, recursively.
pinInBackground(String, SaveCallback) - Method in class com.parse.ParseObject
Stores the object and every object it points to in the local datastore, recursively.
pinInBackground(String) - Method in class com.parse.ParseObject
Stores the object and every object it points to in the local datastore, recursively.
pinInBackground(SaveCallback) - Method in class com.parse.ParseObject
Stores the object and every object it points to in the local datastore, recursively.
pinInBackground() - Method in class com.parse.ParseObject
Stores the object and every object it points to in the local datastore, recursively.
ProgressCallback - Class in com.parse
A ProgressCallback is used to get progress of an operation.
ProgressCallback() - Constructor for class com.parse.ProgressCallback
 
PROPERTY_PUSH_ICON - Static variable in class com.parse.ParsePushBroadcastReceiver
The name of the meta-data field used to override the icon used in Notifications.
provider - Static variable in class com.parse.ParseFacebookUtils
 
PUSH_MISCONFIGURED - Static variable in exception com.parse.ParseException
Error code indicating that push is misconfigured.
PushService - Class in com.parse
A service to listen for push notifications.
PushService() - Constructor for class com.parse.PushService
Client code should not construct a PushService directly.
put(String, Object) - Method in class com.parse.ParseInstallation
 
put(String, Object) - Method in class com.parse.ParseObject
Add a key-value pair to this object.
put(String, Object) - Method in class com.parse.ParseRole
 
put(String, Object) - Method in class com.parse.ParseUser
 

R

refresh() - Method in class com.parse.ParseObject
Deprecated. Please use ParseObject.fetch() instead.
RefreshCallback - Class in com.parse
A RefreshCallback is used to run code after refresh is used to update a ParseObject in a background thread.
RefreshCallback() - Constructor for class com.parse.RefreshCallback
 
refreshInBackground(RefreshCallback) - Method in class com.parse.ParseObject
Deprecated. Please use ParseObject.fetchInBackground(GetCallback) instead.
registerDataSetObserver(DataSetObserver) - Method in class com.parse.ParseQueryAdapter
 
registerSubclass(Class<? extends ParseObject>) - Static method in class com.parse.ParseObject
Registers a custom subclass type with the Parse SDK, enabling strong-typing of those ParseObjects whenever they appear.
remove(String) - Method in class com.parse.ParseInstallation
 
remove(String) - Method in class com.parse.ParseObject
Removes a key from this object's data if it exists.
remove(T) - Method in class com.parse.ParseRelation
Removes an object from this relation.
remove(String) - Method in class com.parse.ParseUser
 
removeAll(String, Collection<?>) - Method in class com.parse.ParseObject
Atomically removes all instances of the objects contained in a Collection from the array associated with a given key.
removeOnQueryLoadListener(ParseQueryAdapter.OnQueryLoadListener<T>) - Method in class com.parse.ParseQueryAdapter
 
requestPasswordReset(String) - Static method in class com.parse.ParseUser
Requests a password reset email to be sent to the specified email address associated with the user account.
RequestPasswordResetCallback - Class in com.parse
A RequestPasswordResetCallback is used to run code requesting a password reset for a user.
RequestPasswordResetCallback() - Constructor for class com.parse.RequestPasswordResetCallback
 
requestPasswordResetInBackground(String) - Static method in class com.parse.ParseUser
Requests a password reset email to be sent in a background thread to the specified email address associated with the user account.
requestPasswordResetInBackground(String, RequestPasswordResetCallback) - Static method in class com.parse.ParseUser
Requests a password reset email to be sent in a background thread to the specified email address associated with the user account.

S

save() - Method in class com.parse.ParseFile
Saves the file to the Parse cloud synchronously.
save() - Method in class com.parse.ParseObject
Saves this object to the server.
saveAll(List<T>) - Static method in class com.parse.ParseObject
Saves each object in the provided list.
saveAllInBackground(List<T>, SaveCallback) - Static method in class com.parse.ParseObject
Saves each object in the provided list to the server in a background thread.
saveAllInBackground(List<T>) - Static method in class com.parse.ParseObject
Saves each object in the provided list to the server in a background thread.
SaveCallback - Class in com.parse
A SaveCallback is used to run code after saving a ParseObject in a background thread.
SaveCallback() - Constructor for class com.parse.SaveCallback
 
saveEventually(SaveCallback) - Method in class com.parse.ParseObject
Saves this object to the server at some unspecified time in the future, even if Parse is currently inaccessible.
saveEventually() - Method in class com.parse.ParseObject
Saves this object to the server at some unspecified time in the future, even if Parse is currently inaccessible.
saveInBackground(ProgressCallback) - Method in class com.parse.ParseFile
Saves the file to the Parse cloud in a background thread.
saveInBackground() - Method in class com.parse.ParseFile
Saves the file to the Parse cloud in a background thread.
saveInBackground(SaveCallback, ProgressCallback) - Method in class com.parse.ParseFile
Saves the file to the Parse cloud in a background thread.
saveInBackground(SaveCallback) - Method in class com.parse.ParseFile
Saves the file to the Parse cloud in a background thread.
saveInBackground() - Method in class com.parse.ParseObject
Saves this object to the server in a background thread.
saveInBackground(SaveCallback) - Method in class com.parse.ParseObject
Saves this object to the server in a background thread.
saveLatestSessionData(ParseUser, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
Saves the latest session data to the user.
saveLatestSessionData(ParseUser) - Static method in class com.parse.ParseFacebookUtils
Deprecated. Please use ParseFacebookUtils.saveLatestSessionDataInBackground(ParseUser) instead.
saveLatestSessionDataInBackground(ParseUser) - Static method in class com.parse.ParseFacebookUtils
Saves the latest session data to the user.
SCRIPT_ERROR - Static variable in exception com.parse.ParseException
Error code indicating that a Cloud Code script failed.
selectKeys(Collection<String>) - Method in class com.parse.ParseQuery
Restrict the fields of returned ParseObjects to only include the provided keys.
send() - Method in class com.parse.ParsePush
Sends this push notification while blocking this thread until the push notification has successfully reached the Parse servers.
SendCallback - Class in com.parse
A SendCallback is used to run code after sending a ParsePush in a background thread.
SendCallback() - Constructor for class com.parse.SendCallback
 
sendDataInBackground(JSONObject, ParseQuery<ParseInstallation>) - Static method in class com.parse.ParsePush
A helper method to concisely send a push to a query.
sendDataInBackground(JSONObject, ParseQuery<ParseInstallation>, SendCallback) - Static method in class com.parse.ParsePush
A helper method to concisely send a push to a query.
sendInBackground() - Method in class com.parse.ParsePush
Sends this push notification in a background thread.
sendInBackground(SendCallback) - Method in class com.parse.ParsePush
Sends this push notification in a background thread.
sendMessageInBackground(String, ParseQuery<ParseInstallation>) - Static method in class com.parse.ParsePush
A helper method to concisely send a push message to a query.
sendMessageInBackground(String, ParseQuery<ParseInstallation>, SendCallback) - Static method in class com.parse.ParsePush
A helper method to concisely send a push message to a query.
SESSION_MISSING - Static variable in exception com.parse.ParseException
Error code indicating that a user object without a valid session could not be altered.
setACL(ParseACL) - Method in class com.parse.ParseObject
Set the ParseACL governing this object.
setAutoload(boolean) - Method in class com.parse.ParseQueryAdapter
Enable or disable the automatic loading of results upon attachment to an AdapterView.
setCachePolicy(ParseQuery.CachePolicy) - Method in class com.parse.ParseQuery
Change the caching policy of this query.
setChannel(String) - Method in class com.parse.ParsePush
Sets the channel on which this push notification will be sent.
setChannels(Collection<String>) - Method in class com.parse.ParsePush
Sets the collection of channels on which this push notification will be sent.
setData(JSONObject) - Method in class com.parse.ParsePush
Sets the entire data of the push message.
setDefaultACL(ParseACL, boolean) - Static method in class com.parse.ParseACL
Sets a default ACL that will be applied to all ParseObjects when they are created.
setDefaultPushCallback(Context, Class<? extends Activity>) - Static method in class com.parse.PushService
Deprecated. Replaced by ParsePushBroadcastReceiver
setDefaultPushCallback(Context, Class<? extends Activity>, int) - Static method in class com.parse.PushService
Deprecated. Replaced by ParsePushBroadcastReceiver
setEmail(String) - Method in class com.parse.ParseUser
Sets the email address.
setExpirationTime(long) - Method in class com.parse.ParsePush
Sets a UNIX epoch timestamp at which this notification should expire, in seconds (UTC).
setExpirationTimeInterval(long) - Method in class com.parse.ParsePush
Sets the time interval after which this notification should expire, in seconds.
setImageBitmap(Bitmap) - Method in class com.parse.ParseImageView
 
setImageKey(String) - Method in class com.parse.ParseQueryAdapter
 
setLatitude(double) - Method in class com.parse.ParseGeoPoint
Set latitude.
setLimit(int) - Method in class com.parse.ParseQuery
Controls the maximum number of results that are returned.
setLogLevel(int) - Static method in class com.parse.Parse
Sets the level of logging to display, where each level includes all those below it.
setLongitude(double) - Method in class com.parse.ParseGeoPoint
Set longitude.
setMaxCacheAge(long) - Method in class com.parse.ParseQuery
Sets the maximum age of cached data that will be considered in this query.
setMessage(String) - Method in class com.parse.ParsePush
Sets the message that will be shown in the notification.
setName(String) - Method in class com.parse.ParseRole
Sets the name for a role.
setObjectId(String) - Method in class com.parse.ParseObject
Setter for the object id.
setObjectsPerPage(int) - Method in class com.parse.ParseQueryAdapter
 
setPageOnQuery(int, ParseQuery<T>) - Method in class com.parse.ParseQueryAdapter
Override this method to manually paginate the provided ParseQuery.
setPaginationEnabled(boolean) - Method in class com.parse.ParseQueryAdapter
Enable or disable pagination of results.
setParseFile(ParseFile) - Method in class com.parse.ParseImageView
Sets the remote file on Parse's server that stores the image.
setPassword(String) - Method in class com.parse.ParseUser
Sets the password.
setPlaceholder(Drawable) - Method in class com.parse.ParseImageView
Sets the placeholder to be used while waiting for an image to be loaded.
setPlaceholder(Drawable) - Method in class com.parse.ParseQueryAdapter
Sets a placeholder image to be used when fetching data for each item in the AdapterView .
setPublicReadAccess(boolean) - Method in class com.parse.ParseACL
Set whether the public is allowed to read this object.
setPublicWriteAccess(boolean) - Method in class com.parse.ParseACL
Set whether the public is allowed to write this object.
setPushToAndroid(boolean) - Method in class com.parse.ParsePush
Deprecated. 
setPushToIOS(boolean) - Method in class com.parse.ParsePush
Deprecated. 
setQuery(ParseQuery<ParseInstallation>) - Method in class com.parse.ParsePush
Sets the query for this push for which this push notification will be sent.
setReadAccess(String, boolean) - Method in class com.parse.ParseACL
Set whether the given user id is allowed to read this object.
setReadAccess(ParseUser, boolean) - Method in class com.parse.ParseACL
Set whether the given user is allowed to read this object.
setRoleReadAccess(String, boolean) - Method in class com.parse.ParseACL
Set whether users belonging to the role with the given roleName are allowed to read this object.
setRoleReadAccess(ParseRole, boolean) - Method in class com.parse.ParseACL
Set whether users belonging to the given role are allowed to read this object.
setRoleWriteAccess(String, boolean) - Method in class com.parse.ParseACL
Set whether users belonging to the role with the given roleName are allowed to write this object.
setRoleWriteAccess(ParseRole, boolean) - Method in class com.parse.ParseACL
Set whether users belonging to the given role are allowed to write this object.
setSkip(int) - Method in class com.parse.ParseQuery
Controls the number of results to skip before returning any results.
setTextKey(String) - Method in class com.parse.ParseQueryAdapter
 
setTrace(boolean) - Method in class com.parse.ParseQuery
Turn on performance tracing of finds.
setUsername(String) - Method in class com.parse.ParseUser
Sets the username.
setWriteAccess(String, boolean) - Method in class com.parse.ParseACL
Set whether the given user id is allowed to write this object.
setWriteAccess(ParseUser, boolean) - Method in class com.parse.ParseACL
Set whether the given user is allowed to write this object.
shouldExtendAccessToken(ParseUser) - Static method in class com.parse.ParseFacebookUtils
Deprecated. This is now handled automatically by the Facebook SDK.
signUp() - Method in class com.parse.ParseUser
Signs up a new user.
SignUpCallback - Class in com.parse
A SignUpCallback is used to run code after signing up a ParseUser in a background thread.
SignUpCallback() - Constructor for class com.parse.SignUpCallback
 
signUpInBackground() - Method in class com.parse.ParseUser
Signs up a new user.
signUpInBackground(SignUpCallback) - Method in class com.parse.ParseUser
Signs up a new user.
SMALL_NOTIFICATION_MAX_CHARACTER_LIMIT - Static variable in class com.parse.ParsePushBroadcastReceiver
 
subscribe(Context, String, Class<? extends Activity>) - Static method in class com.parse.PushService
Deprecated. Developers should use ParsePush.subscribeInBackground and ParsePushBroadcastReceiver.
subscribe(Context, String, Class<? extends Activity>, int) - Static method in class com.parse.PushService
Deprecated. Developers should use ParsePush.subscribeInBackground and ParsePushBroadcastReceiver.
subscribeInBackground(String) - Static method in class com.parse.ParsePush
Adds 'channel' to the 'channels' list in the current ParseInstallation and saves it in a background thread.
subscribeInBackground(String, SaveCallback) - Static method in class com.parse.ParsePush
Adds 'channel' to the 'channels' list in the current ParseInstallation and saves it in a background thread.

T

TIMEOUT - Static variable in exception com.parse.ParseException
Error code indicating that the request timed out on the server.
toString() - Method in class com.parse.ParseConfig
 
trackAppOpened(Intent) - Static method in class com.parse.ParseAnalytics
Deprecated. Please use ParseAnalytics.trackAppOpenedInBackground(android.content.Intent) instead.
trackAppOpenedInBackground(Intent) - Static method in class com.parse.ParseAnalytics
Tracks this application being launched (and if this happened as the result of the user opening a push notification, this method sends along information to correlate this open with that push).
trackAppOpenedInBackground(Intent, SaveCallback) - Static method in class com.parse.ParseAnalytics
Tracks this application being launched (and if this happened as the result of the user opening a push notification, this method sends along information to correlate this open with that push).
trackEvent(String) - Static method in class com.parse.ParseAnalytics
Deprecated. Please use ParseAnalytics.trackEventInBackground(String) instead.
trackEvent(String, Map<String, String>) - Static method in class com.parse.ParseAnalytics
Deprecated. Please use ParseAnalytics.trackEventInBackground(String, java.util.Map) instead.
trackEventInBackground(String, SaveCallback) - Static method in class com.parse.ParseAnalytics
Tracks the occurrence of a custom event.
trackEventInBackground(String, Map<String, String>, SaveCallback) - Static method in class com.parse.ParseAnalytics
Tracks the occurrence of a custom event with additional dimensions.
trackEventInBackground(String) - Static method in class com.parse.ParseAnalytics
Tracks the occurrence of a custom event with additional dimensions.
trackEventInBackground(String, Map<String, String>) - Static method in class com.parse.ParseAnalytics
Tracks the occurrence of a custom event with additional dimensions.

U

unlink(ParseUser) - Static method in class com.parse.ParseFacebookUtils
Unlinks a user from a Facebook account.
unlink(ParseUser) - Static method in class com.parse.ParseTwitterUtils
Unlinks a user from a Twitter account.
unlinkInBackground(ParseUser) - Static method in class com.parse.ParseFacebookUtils
Unlinks a user from a Facebook account in the background.
unlinkInBackground(ParseUser, SaveCallback) - Static method in class com.parse.ParseFacebookUtils
Unlinks a user from a Facebook account in the background.
unlinkInBackground(ParseUser) - Static method in class com.parse.ParseTwitterUtils
Unlinks a user from a Twitter account in the background.
unlinkInBackground(ParseUser, SaveCallback) - Static method in class com.parse.ParseTwitterUtils
Unlinks a user from a Twitter account in the background.
unpin(String) - Method in class com.parse.ParseObject
Removes the object and every object it points to in the local datastore, recursively.
unpin() - Method in class com.parse.ParseObject
Removes the object and every object it points to in the local datastore, recursively.
unpinAll(String, List<T>) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAll(List<T>) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAll(String) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAll() - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground(String, List<T>, DeleteCallback) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground(String, List<T>) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground(List<T>, DeleteCallback) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground(List<T>) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground(String, DeleteCallback) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground(String) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground(DeleteCallback) - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinAllInBackground() - Static method in class com.parse.ParseObject
Removes the objects and every object they point to in the local datastore, recursively.
unpinInBackground(String, DeleteCallback) - Method in class com.parse.ParseObject
Removes the object and every object it points to in the local datastore, recursively.
unpinInBackground(String) - Method in class com.parse.ParseObject
Removes the object and every object it points to in the local datastore, recursively.
unpinInBackground(DeleteCallback) - Method in class com.parse.ParseObject
Removes the object and every object it points to in the local datastore, recursively.
unpinInBackground() - Method in class com.parse.ParseObject
Removes the object and every object it points to in the local datastore, recursively.
unregisterDataSetObserver(DataSetObserver) - Method in class com.parse.ParseQueryAdapter
 
unsubscribe(Context, String) - Static method in class com.parse.PushService
Deprecated. Developers should use ParsePush.unsubscribeInBackground and ParsePushBroadcastReceiver.
unsubscribeInBackground(String) - Static method in class com.parse.ParsePush
Removes 'channel' from the 'channels' list in the current ParseInstallation and saves it in a background thread.
unsubscribeInBackground(String, SaveCallback) - Static method in class com.parse.ParsePush
Removes 'channel' from the 'channels' list in the current ParseInstallation and saves it in a background thread.
UNSUPPORTED_SERVICE - Static variable in exception com.parse.ParseException
Error code indicating that a service being linked (e.g.
USERNAME_MISSING - Static variable in exception com.parse.ParseException
Error code indicating that the username is missing or empty.
USERNAME_TAKEN - Static variable in exception com.parse.ParseException
Error code indicating that the username has already been taken.

V

validateSave() - Method in class com.parse.ParseRole
 
VALIDATION_ERROR - Static variable in exception com.parse.ParseException
Error code indicating that cloud code validation failed.
valueOf(String) - Static method in enum com.parse.ParseQuery.CachePolicy
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.parse.ParseQuery.CachePolicy
Returns an array containing the constants of this enum type, in the order they are declared.

W

whereContainedIn(String, Collection<? extends Object>) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value to be contained in the provided list of values.
whereContains(String, String) - Method in class com.parse.ParseQuery
Add a constraint for finding string values that contain a provided string.
whereContainsAll(String, Collection<?>) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value match another ParseQuery.
whereDoesNotExist(String) - Method in class com.parse.ParseQuery
Add a constraint for finding objects that do not contain a given key.
whereDoesNotMatchKeyInQuery(String, String, ParseQuery<?>) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value does not match any value for a key in the results of another ParseQuery.
whereDoesNotMatchQuery(String, ParseQuery<?>) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value does not match another ParseQuery.
whereEndsWith(String, String) - Method in class com.parse.ParseQuery
Add a constraint for finding string values that end with a provided string.
whereEqualTo(String, Object) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value to be equal to the provided value.
whereExists(String) - Method in class com.parse.ParseQuery
Add a constraint for finding objects that contain the given key.
whereGreaterThan(String, Object) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value to be greater than the provided value.
whereGreaterThanOrEqualTo(String, Object) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value to be greater than or equal to the provided value.
whereLessThan(String, Object) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value to be less than the provided value.
whereLessThanOrEqualTo(String, Object) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value to be less than or equal to the provided value.
whereMatches(String, String) - Method in class com.parse.ParseQuery
Add a regular expression constraint for finding string values that match the provided regular expression.
whereMatches(String, String, String) - Method in class com.parse.ParseQuery
Add a regular expression constraint for finding string values that match the provided regular expression.
whereMatchesKeyInQuery(String, String, ParseQuery<?>) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value matches a value for a key in the results of another ParseQuery
whereMatchesQuery(String, ParseQuery<?>) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value match another ParseQuery.
whereNear(String, ParseGeoPoint) - Method in class com.parse.ParseQuery
Add a proximity based constraint for finding objects with key point values near the point given.
whereNotContainedIn(String, Collection<? extends Object>) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value not be contained in the provided list of values.
whereNotEqualTo(String, Object) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's value to be not equal to the provided value.
whereStartsWith(String, String) - Method in class com.parse.ParseQuery
Add a constraint for finding string values that start with a provided string.
whereWithinGeoBox(String, ParseGeoPoint, ParseGeoPoint) - Method in class com.parse.ParseQuery
Add a constraint to the query that requires a particular key's coordinates be contained within a given rectangular geographic bounding box.
whereWithinKilometers(String, ParseGeoPoint, double) - Method in class com.parse.ParseQuery
Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.
whereWithinMiles(String, ParseGeoPoint, double) - Method in class com.parse.ParseQuery
Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.
whereWithinRadians(String, ParseGeoPoint, double) - Method in class com.parse.ParseQuery
Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.

A B C D E F G H I K L M N O P R S T U V W