Package com.parse
-
Interface Summary Interface Description AuthenticationCallback Provides a general interface for delegation of third party authentication callbacks.ConfigCallback AConfigCallback
is used to run code afterParseConfig.getInBackground()
is used to fetch a new configuration object from the server in a background thread.CountCallback ACountCallback
is used to run code after aParseQuery
is used to count objects matching a query in a background thread.DeleteCallback ADeleteCallback
is used to run code after saving aParseObject
in a background thread.FindCallback<T extends ParseObject> AFindCallback
is used to run code after aParseQuery
is used to fetch a list ofParseObject
s in a background thread.FunctionCallback<T> AFunctionCallback
is used to run code afterParseCloud.callFunction(java.lang.String, java.util.Map<java.lang.String, ?>)
is used to run a Cloud Function in a background thread.GetCallback<T extends ParseObject> AGetCallback
is used to run code after aParseQuery
is used to fetch aParseObject
in a background thread.GetDataCallback AGetDataCallback
is used to run code after aParseFile
fetches its data on a background thread.GetDataStreamCallback AGetDataStreamCallback
is used to run code after aParseFile
fetches its data on a background thread.GetFileCallback AGetFileCallback
is used to run code after aParseFile
fetches its data on a background thread.LocationCallback ALocationCallback
is used to run code after a Location has been fetched bycom.parse.ParseGeoPoint#getCurrentLocationInBackground(long, android.location.Criteria)
.LogInCallback ALogInCallback
is used to run code after logging in a user.LogOutCallback ALogOutCallback
is used to run code after logging out a user.ProgressCallback AProgressCallback
is used to get upload or download progress of aParseFile
action.RequestPasswordResetCallback ARequestPasswordResetCallback
is used to run code requesting a password reset for a user.SaveCallback ASaveCallback
is used to run code after saving aParseObject
in a background thread.SendCallback ASendCallback
is used to run code after sending aParsePush
in a background thread.SignUpCallback ASignUpCallback
is used to run code after signing up aParseUser
in a background thread. -
Class Summary Class Description ManifestInfo A utility class for retrieving app metadata such as the app name, default icon, whether or not the app declares the correct permissions for push, etc.Parse TheParse
class contains static functions that handle global configuration for the Parse library.Parse.Configuration Represents an opaque configuration for theParse
SDK configuration.Parse.Configuration.Builder Allows for simple constructing of aConfiguration
object.ParseACL AParseACL
is used to control which users can access or modify a particular object.ParseAnalytics TheParseAnalytics
class provides an interface to Parse's logging and analytics backend.ParseAnonymousUtils Provides utility functions for working with Anonymously logged-in users.ParseCacheDirMigrationUtils TheParseMigrationUtils
class perform caching dir migration operation forParse
SDK.ParseCloud The ParseCloud class defines provides methods for interacting with Parse Cloud Functions.ParseConfig TheParseConfig
is a local representation of configuration data that can be set from the Parse dashboard.ParseDecoder AParseDecoder
can be used to transform JSON data structures into actual objects, such asParseObject
s.ParseEncoder AParseEncoder
can be used to transform objects such asParseObject
s into JSON data structures.ParseFile ParseFile
is a local representation of a file that is saved to the Parse cloud.ParseFileUtils General file manipulation utilities.ParseGeoPoint ParseGeoPoint
represents a latitude / longitude point that may be associated with a key in aParseObject
or used as a reference point for geo queries.ParseInstallation TheParseInstallation
is a local representation of installation data that can be saved and retrieved from the Parse cloud.ParseObject TheParseObject
is a local representation of data that can be saved and retrieved from the Parse cloud.ParsePlugins Public for LiveQuery.ParsePolygon ParsePolygon
represents a set of coordinates that may be associated with a key in aParseObject
or used as a reference point for geo queries.ParsePush TheParsePush
is a local representation of data that can be sent as a push notification.ParsePushBroadcastReceiver ABroadcastReceiver
for rendering and reacting to to Notifications.ParseQuery<T extends ParseObject> TheParseQuery
class defines a query that is used to fetchParseObject
s.ParseQuery.State<T extends ParseObject> Used by Parse LiveQueryParseQuery.State.Builder<T extends ParseObject> ParseRelation<T extends ParseObject> A class that is used to access all of the children of a many-to-many relationship.ParseRole Represents a Role on the Parse server.ParseSession TheParseSession
is a local representation of session data that can be saved and retrieved from the Parse cloud.ParseUser TheParseUser
is a local representation of user data that can be saved and retrieved from the Parse cloud.PLog Parse Logger.PointerEncoder EncodesParseObject
s as pointers.PointerOrLocalIdEncoder EncodesParseObject
s as pointers.PushRouter PushRouter handles distribution of push payloads through a broadcast intent with the "com.parse.push.intent.RECEIVE" action. -
Enum Summary Enum Description ParseQuery.CachePolicy CachePolicy
specifies different caching policies that could be used withParseQuery
. -
Exception Summary Exception Description ParseException A ParseException gets raised whenever aParseObject
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. -
Annotation Types Summary Annotation Type Description ParseClassName Associates a class name for a subclass of ParseObject.