public enum CreateFileRequestError extends java.lang.Enum<CreateFileRequestError>
Enum Constant and 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.
|
INVALID_LOCATION
File requests are not available on the specified folder.
|
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.
|
RATE_LIMIT
The user has reached the rate limit for creating file requests.
|
VALIDATION_ERROR
There was an error validating the request.
|
Modifier and Type | Method and Description |
---|---|
static CreateFileRequestError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CreateFileRequestError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreateFileRequestError DISABLED_FOR_TEAM
public static final CreateFileRequestError OTHER
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.
public static final CreateFileRequestError NOT_FOUND
public static final CreateFileRequestError NOT_A_FOLDER
public static final CreateFileRequestError APP_LACKS_ACCESS
public static final CreateFileRequestError NO_PERMISSION
public static final CreateFileRequestError EMAIL_UNVERIFIED
public static final CreateFileRequestError VALIDATION_ERROR
public static final CreateFileRequestError INVALID_LOCATION
public static final CreateFileRequestError RATE_LIMIT
public static CreateFileRequestError[] values()
for (CreateFileRequestError c : CreateFileRequestError.values()) System.out.println(c);
public static CreateFileRequestError valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null