Package com.dropbox.core.v2.filerequests
Enum DeleteAllClosedFileRequestsError
- java.lang.Object
-
- java.lang.Enum<DeleteAllClosedFileRequestsError>
-
- com.dropbox.core.v2.filerequests.DeleteAllClosedFileRequestsError
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DeleteAllClosedFileRequestsError>
public enum DeleteAllClosedFileRequestsError extends java.lang.Enum<DeleteAllClosedFileRequestsError>
There was an error deleting all closed file requests.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_LACKS_ACCESS
This file request is not accessible to this app.DISABLED_FOR_TEAM
This user's Dropbox Business team doesn't allow file requests.EMAIL_UNVERIFIED
This user's email address is not verified.NO_PERMISSION
This user doesn't have permission to access or modify this file request.NOT_A_FOLDER
The specified path is not a folder.NOT_FOUND
This file request ID was not found.OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.VALIDATION_ERROR
There was an error validating the request.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DeleteAllClosedFileRequestsError
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DeleteAllClosedFileRequestsError[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLED_FOR_TEAM
public static final DeleteAllClosedFileRequestsError DISABLED_FOR_TEAM
This user's Dropbox Business team doesn't allow file requests.
-
OTHER
public static final DeleteAllClosedFileRequestsError 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
public static final DeleteAllClosedFileRequestsError NOT_FOUND
This file request ID was not found.
-
NOT_A_FOLDER
public static final DeleteAllClosedFileRequestsError NOT_A_FOLDER
The specified path is not a folder.
-
APP_LACKS_ACCESS
public static final DeleteAllClosedFileRequestsError 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
public static final DeleteAllClosedFileRequestsError NO_PERMISSION
This user doesn't have permission to access or modify this file request.
-
EMAIL_UNVERIFIED
public static final DeleteAllClosedFileRequestsError 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
public static final DeleteAllClosedFileRequestsError VALIDATION_ERROR
There was an error validating the request. For example, the title was invalid, or there were disallowed characters in the destination path.
-
-
Method Detail
-
values
public static DeleteAllClosedFileRequestsError[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeleteAllClosedFileRequestsError c : DeleteAllClosedFileRequestsError.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeleteAllClosedFileRequestsError valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-