Interface | Description |
---|---|
DbxAccount.Listener |
Callback interface for listeners to be notified when a
specific account changes.
|
DbxAccountManager.AccountListener |
Interface for receiving notifications of a new account being
linked or an existing account being unlinked.
|
DbxDatastore.SyncStatusListener |
A listener that will be called when there's a change to the sync
status of this datastore.
|
DbxDatastoreManager.ListListener |
A listener that will be called when there's a change to the list of
known datastores.
|
DbxFile.Listener |
A listener that will be called when there's a change to the sync
status, file info, or contents of this file.
|
DbxFileSystem.PathListener |
A listener to be called when there's a change at a given path, or
optionally to its descendants.
|
DbxFileSystem.SyncStatusListener |
A listener to be called when there's a change to the status of
background synchronization, as reported by
DbxFileSystem.getSyncStatus() . |
Class | Description |
---|---|
DbxAccount |
Represents a specific user's Dropbox account.
|
DbxAccountInfo |
Information about a user's Dropbox account.
|
DbxAccountManager |
This is the entry point for the Sync API.
|
DbxDatastore |
A datastore is a container for app data.
|
DbxDatastoreInfo |
Info about a Dropbox datastore.
|
DbxDatastoreManager |
The Datastore Manager allows you to access datastores in a user's Dropbox.
|
DbxDatastoreStatus |
Sync status for a
DbxDatastore . |
DbxFields |
Allows you to access a set of fields, which might be stored in a record
in a datastore, or might be a temporary set not yet saved in a record.
|
DbxFile |
Provides access to a file in Dropbox.
|
DbxFileInfo |
Info about a Dropbox file system entry.
|
DbxFileStatus |
Sync status for a
DbxFile . |
DbxFileSystem |
Provides access to the files and folders in a user's Dropbox.
|
DbxList | |
DbxPath |
Represents a path in Dropbox, relative to the root which is visible to your app.
|
DbxRecord |
A record represents an entry in a particular table in a datastore.
|
DbxSyncStatus |
The current status of background synchronization for a
DbxFileSystem . |
DbxSyncStatus.OperationStatus |
The current status of one type of background synchronization operation.
|
DbxTable |
A collection of records that lets you query for existing records or insert new ones.
|
Enum | Description |
---|---|
DbxFields.AtomType |
The atomic value types: those which can be included in lists.
|
DbxFields.ValueType |
The possible types of datastore field values, as stored on the server.
|
DbxFileStatus.PendingOperation |
Indicates the pending operation on a file.
|
DbxFileSystem.PathListener.Mode |
Specifies the situations in which a listener should be notified.
|
DbxFileSystem.ThumbFormat |
Specifies the desired format when opening a thumbnail.
|
DbxFileSystem.ThumbSize |
Specifies the desired size when opening a thumbnail.
|
DbxTable.ResolutionRule |
Constants to specify the possible conflict resolution rules for a
field in
DbxTable.setResolutionRule(java.lang.String, com.dropbox.sync.android.DbxTable.ResolutionRule) . |
Exception | Description |
---|---|
DbxAccountManager.ConfigurationMismatchException |
Thrown when
DbxAccountManager.getInstance(android.content.Context, java.lang.String, java.lang.String) was called with two different configurations
in the same application. |
DbxAccountManager.MultipleAccountsException |
Thrown when the app attempts to link with a Dropbox account while
already linked.
|
DbxException |
Base class for exceptions.
|
DbxException.AlreadyOpen |
Specified file is already open.
|
DbxException.ApiUsage |
Specific usage or arguments.
|
DbxException.Disallowed |
The app attempted an operation that isn't allowed by its access
level.
|
DbxException.DiskSpace |
Insufficient storage space.
|
DbxException.Exists |
Specified file or folder already exists.
|
DbxException.InvalidParameter |
Bad parameter value, such as attempting to delete or move the root
directory.
|
DbxException.Network |
Network failure.
|
DbxException.NetworkConnection |
Failure to establish a network connection.
|
DbxException.NetworkTimeout |
Network timeout.
|
DbxException.NotFound |
Specified file or folder doesn't exist.
|
DbxException.NoThumb |
No thumbnail is available.
|
DbxException.Parent |
Parent of a specified file or folder doesn't exist, or is a file
rather than a folder.
|
DbxException.Quota |
The user's Dropbox quota is full.
|
DbxException.RecoverableSystem |
System failure that should be recoverable in some way.
|
DbxException.Server |
Error reported by the server.
|
DbxException.Ssl |
Failure to establish SSL communication.
|
DbxException.Unauthorized |
Application or user isn't authorized.
|
DbxFields.FieldNotFound |
Thrown when attempting to get the value of a field that isn't present.
|
DbxFields.IllegalFieldName |
Thrown when an illegal field name is given.
|
DbxFields.WrongValueType |
Thrown when attempting to get a field that isn't of the specified type.
|
DbxFile.StreamExclusionException |
Thrown when attempt was made to read or write this DbxFile when an existing
stream is already open.
|
DbxPath.InvalidPathException |
Thrown when a given string isn't a valid Dropbox path, due to
invalid characters, names, or encodings.
|
DbxRecord.IllegalRecordId |
Thrown when an illegal record ID is given.
|
DbxTable.IllegalTableId |
Thrown when an illegal table ID is given.
|