Skip navigation links
A C D E F G H I J K L M N O P Q R S T U V W 

P

Parse - Class in com.parse4cn1
The Parse class contains static functions, classes and interfaces that handle global configuration for the Parse library.
Parse() - Constructor for class com.parse4cn1.Parse
 
Parse.DefaultParseObjectFactory - Class in com.parse4cn1
A factory for instantiating reserved Parse Object classes such as users, roles, installations and sessions.
Parse.EPlatform - Enum in com.parse4cn1
 
Parse.IParseObjectFactory - Interface in com.parse4cn1
A factory for instantiating ParseObjects of various concrete types
Parse.IPersistable - Interface in com.parse4cn1
An interface for a persistable entity.
PARSE4CN1_INSTALLATION_ID_NOT_RETRIEVED_FROM_NATIVE_SDK - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_INSTALLATION_NOT_FOUND - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_MULTIPLE_INSTALLATIONS_FOUND - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_NATIVE_INTERFACE_LOOKUP_FAILED - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_NOT_INITIALIZED - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_PUSH_REGISTRATION_FAILED - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_PUSH_REGISTRATION_FAILED_INSTALLATION_UPDATE_ERROR - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_PUSH_REGISTRATION_FAILED_MISSING_PARAMS - Static variable in exception com.parse4cn1.ParseException
 
PARSE4CN1_PUSH_SENDING_FAILED - Static variable in exception com.parse4cn1.ParseException
 
ParseBatch - Class in com.parse4cn1
This class enables issuing of batch requests.
ParseBatch.EBatchOpType - Enum in com.parse4cn1
An enumeration of batch operation types.
ParseCallback<T> - Class in com.parse4cn1.callback
A generic Parse callback.
ParseCallback() - Constructor for class com.parse4cn1.callback.ParseCallback
 
ParseCloud - Class in com.parse4cn1
The ParseCloud class defines provides methods for interacting with Parse Cloud Functions.
ParseCloud() - Constructor for class com.parse4cn1.ParseCloud
 
ParseCommand - Class in com.parse4cn1.command
This class encapsulates a network request to be made to the Parse REST API using any of the supported HTTP verbs.
ParseCommand() - Constructor for class com.parse4cn1.command.ParseCommand
 
ParseConfig - Class in com.parse4cn1
ParseConfig is a way to configure your applications remotely by storing a single configuration object on Parse.
ParseConstants - Class in com.parse4cn1
This class defines various constants used in the library.
ParseConstants() - Constructor for class com.parse4cn1.ParseConstants
 
parseDate(String) - Static method in class com.parse4cn1.Parse
Converts a Parse date string value into a Date object.
ParseDecoder - Class in com.parse4cn1.encode
This class decodes data retrieved from the Parse server.
ParseDecoder() - Constructor for class com.parse4cn1.encode.ParseDecoder
 
ParseDeleteCommand - Class in com.parse4cn1.command
This class defines a command for deleting resources from the Parse server.
ParseDeleteCommand(String, String) - Constructor for class com.parse4cn1.command.ParseDeleteCommand
 
ParseDeleteCommand(String) - Constructor for class com.parse4cn1.command.ParseDeleteCommand
 
ParseDownloadCommand - Class in com.parse4cn1.command
This class defines a command for downloading resources from the Parse server.
ParseDownloadCommand(String, String) - Constructor for class com.parse4cn1.command.ParseDownloadCommand
 
ParseEncoder - Class in com.parse4cn1.encode
This class encodes data to be sent to the Parse server.
ParseEncoder() - Constructor for class com.parse4cn1.encode.ParseEncoder
 
ParseException - Exception in com.parse4cn1
An exception class for the library.
ParseException(int, String, Throwable) - Constructor for exception com.parse4cn1.ParseException
Creates an exception with the specified error code, message and cause.
ParseException(int, String) - Constructor for exception com.parse4cn1.ParseException
Creates an exception with the specified error code and message.
ParseException(String, Throwable) - Constructor for exception com.parse4cn1.ParseException
Creates an exception with the specified message and cause.
ParseFile - Class in com.parse4cn1
ParseFile is a local representation of a file that is saved to the Parse cloud.
ParseFile(String, byte[], String) - Constructor for class com.parse4cn1.ParseFile
Creates a new file from a byte array, file name, and content type.
ParseFile(byte[]) - Constructor for class com.parse4cn1.ParseFile
Creates a new file from a byte array.
ParseFile(String, byte[]) - Constructor for class com.parse4cn1.ParseFile
Creates a new file from a byte array and a name.
ParseFile(byte[], String) - Constructor for class com.parse4cn1.ParseFile
Creates a new file from a byte array, and content type.
ParseFile(String, String) - Constructor for class com.parse4cn1.ParseFile
Creates a file without data.
ParseFile() - Constructor for class com.parse4cn1.ParseFile
Creates a file with all null fields.
ParseGeoPoint - Class in com.parse4cn1
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.parse4cn1.ParseGeoPoint
Creates a new GeoPoint with default coordinates (0.0, 0.0).
ParseGeoPoint(double, double) - Constructor for class com.parse4cn1.ParseGeoPoint
Creates a new point with the specified latitude and longitude.
ParseGetCommand - Class in com.parse4cn1.command
This class defines a GET command for retrieving objects from the Parse server.
ParseGetCommand(String, String) - Constructor for class com.parse4cn1.command.ParseGetCommand
 
ParseGetCommand(String) - Constructor for class com.parse4cn1.command.ParseGetCommand
 
ParseInstallation - Class in com.parse4cn1
ParseInstallation represents an instance of an app that has been installed on a specific device.
ParseInstallation() - Constructor for class com.parse4cn1.ParseInstallation
Creates a new ParseInstallation.
ParseInstallationNative - Interface in com.parse4cn1.nativeinterface
Provides access to native functionality related to Parse installations.
ParseObject - Class in com.parse4cn1
The ParseObject is a local representation of data that can be saved and retrieved from the Parse cloud.
ParseObject(String) - Constructor for class com.parse4cn1.ParseObject
 
ParseOperation - Interface in com.parse4cn1.operation
A parse operation is an operation that can be performed on a parse object to change its state, e.g., add, delete or modify fields, or create relations with other objects.
ParseOperationDecoder - Class in com.parse4cn1.operation
This class defines methods for decoding various Parse operations.
ParseOperationDecoder() - Constructor for class com.parse4cn1.operation.ParseOperationDecoder
 
ParseOperationUtil - Class in com.parse4cn1.operation
This class defines general utilities related to Parse operations.
ParseOperationUtil() - Constructor for class com.parse4cn1.operation.ParseOperationUtil
 
ParsePostCommand - Class in com.parse4cn1.command
This class defines a POST command typically used for creating objects on the Parse server.
ParsePostCommand(String, String) - Constructor for class com.parse4cn1.command.ParsePostCommand
 
ParsePostCommand(String) - Constructor for class com.parse4cn1.command.ParsePostCommand
 
ParsePush - Class in com.parse4cn1
The ParsePush is a local representation of data that can be sent as a push notification.
ParsePush.IPushCallback - Interface in com.parse4cn1
An interface for receiving push notification callbacks.
ParsePushNative - Interface in com.parse4cn1.nativeinterface
Provides access to native functionality related to Parse push notifications.
ParsePutCommand - Class in com.parse4cn1.command
This class defines a PUT command typically used for updating objects on the Parse server.
ParsePutCommand(String, String) - Constructor for class com.parse4cn1.command.ParsePutCommand
 
ParsePutCommand(String) - Constructor for class com.parse4cn1.command.ParsePutCommand
 
ParseQuery<T extends ParseObject> - Class in com.parse4cn1
The ParseQuery class defines a query that is used to fetch ParseObjects.
ParseQuery.RelationConstraint - Class in com.parse4cn1
This class defines a relation constraint that is used when specifying many-to-many relations.
ParseRegistry - Class in com.parse4cn1.util
Defines a registry for ParseObject (sub-)classes to facilitate their instantiation at runtime.
ParseRegistry() - Constructor for class com.parse4cn1.util.ParseRegistry
 
ParseRelation<T extends ParseObject> - Class in com.parse4cn1
A class that is used to define, modify and/or access all of the children of a many-to-many relationship.
ParseRelation() - Constructor for class com.parse4cn1.ParseRelation
 
ParseRelation(JSONObject) - Constructor for class com.parse4cn1.ParseRelation
Creates a ParseRelation object from JSON data, for example, retrieved from a Parse API call.
ParseRelation(ParseObject, String, String) - Constructor for class com.parse4cn1.ParseRelation
Creates a ParseRelation between the parent and targetClass using the specified key in the parent.
ParseResponse - Class in com.parse4cn1.command
This class encapsulates a response to a ParseCommand issued to the Parse server.
ParseResponse() - Constructor for class com.parse4cn1.command.ParseResponse
 
ParseRole - Class in com.parse4cn1
Represents a Role on the Parse server.
ParseRole() - Constructor for class com.parse4cn1.ParseRole
 
ParseUploadCommand - Class in com.parse4cn1.command
This class defines a command for uploading resources to the Parse server.
ParseUploadCommand(String) - Constructor for class com.parse4cn1.command.ParseUploadCommand
 
ParseUser - Class in com.parse4cn1
The ParseUser is a local representation of user data that can be saved and retrieved from the Parse cloud.
ParseUser() - Constructor for class com.parse4cn1.ParseUser
 
PASSWORD_MISSING - Static variable in exception com.parse4cn1.ParseException
 
perform() - Method in class com.parse4cn1.command.ParseCommand
Performs this ParseCommand by issuing a synchronous network request.
performSave(ParseCommand) - Method in class com.parse4cn1.ParseObject
Saves this object.
performSave(ParseCommand) - Method in class com.parse4cn1.ParseUser
 
PointerEncodingStrategy - Class in com.parse4cn1.encode
This class defines a Parse object encoding strategy based on pointers.
PointerEncodingStrategy() - Constructor for class com.parse4cn1.encode.PointerEncodingStrategy
 
PointerOrLocalIdEncodingStrategy - Class in com.parse4cn1.encode
This class defines a Parse object encoding strategy based on pointers.
PointerOrLocalIdEncodingStrategy() - Constructor for class com.parse4cn1.encode.PointerOrLocalIdEncodingStrategy
 
ProgressCallback - Class in com.parse4cn1.callback
 
ProgressCallback() - Constructor for class com.parse4cn1.callback.ProgressCallback
 
PUSH_MISCONFIGURED - Static variable in exception com.parse4cn1.ParseException
 
put(String, Object) - Method in class com.parse4cn1.ParseObject
 
A C D E F G H I J K L M N O P Q R S T U V W 
Skip navigation links