Package com.dropbox.core.v2.filerequests
Enum Class DeleteAllClosedFileRequestsError
java.lang.Object
java.lang.Enum<DeleteAllClosedFileRequestsError>
com.dropbox.core.v2.filerequests.DeleteAllClosedFileRequestsError
- All Implemented Interfaces:
Serializable,Comparable<DeleteAllClosedFileRequestsError>,Constable
There was an error deleting all closed file requests.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis file request is not accessible to this app.This user's Dropbox Business team doesn't allow file requests.This user's email address is not verified.This user doesn't have permission to access or modify this file request.This user doesn't have permission to edit files in a destination folderThe specified path is not a folder.This file request ID was not found.Catch-all used for unknown tag values returned by the Dropbox servers.There was an error validating the request. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static DeleteAllClosedFileRequestsError[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISABLED_FOR_TEAM
This user's Dropbox Business team doesn't allow file requests. -
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.Receiving a catch-all value typically indicates this SDK version is not up to date. Consider updating your SDK version to handle the new tags.
-
NOT_FOUND
This file request ID was not found. -
NOT_A_FOLDER
The specified path is not a folder. -
APP_LACKS_ACCESS
This file request is not accessible to this app. Apps with the app folder permission can only access file requests in their app folder. -
NO_PERMISSION
This user doesn't have permission to access or modify this file request. -
EMAIL_UNVERIFIED
This user's email address is not verified. File requests are only available on accounts with a verified email address. Users can verify their email address here. -
VALIDATION_ERROR
There was an error validating the request. For example, the title was invalid, or there were disallowed characters in the destination path. -
NO_WRITE_PERMISSION
This user doesn't have permission to edit files in a destination folder
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-