Package com.dropbox.core.v2.filerequests
Enum CreateFileRequestError
- java.lang.Object
- 
- java.lang.Enum<CreateFileRequestError>
- 
- com.dropbox.core.v2.filerequests.CreateFileRequestError
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<CreateFileRequestError>
 
 public enum CreateFileRequestError extends java.lang.Enum<CreateFileRequestError> There was an error creating the file request.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description APP_LACKS_ACCESSThis file request is not accessible to this app.DISABLED_FOR_TEAMThis user's Dropbox Business team doesn't allow file requests.EMAIL_UNVERIFIEDThis user's email address is not verified.INVALID_LOCATIONFile requests are not available on the specified folder.NO_PERMISSIONThis user doesn't have permission to access or modify this file request.NOT_A_FOLDERThe specified path is not a folder.NOT_FOUNDThis file request ID was not found.OTHERCatch-all used for unknown tag values returned by the Dropbox servers.RATE_LIMITThe user has reached the rate limit for creating file requests.VALIDATION_ERRORThere was an error validating the request.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CreateFileRequestErrorvalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
DISABLED_FOR_TEAMpublic static final CreateFileRequestError DISABLED_FOR_TEAM This user's Dropbox Business team doesn't allow file requests.
 - 
OTHERpublic static final CreateFileRequestError 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_FOUNDpublic static final CreateFileRequestError NOT_FOUND This file request ID was not found.
 - 
NOT_A_FOLDERpublic static final CreateFileRequestError NOT_A_FOLDER The specified path is not a folder.
 - 
APP_LACKS_ACCESSpublic static final CreateFileRequestError 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_PERMISSIONpublic static final CreateFileRequestError NO_PERMISSION This user doesn't have permission to access or modify this file request.
 - 
EMAIL_UNVERIFIEDpublic static final CreateFileRequestError 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_ERRORpublic static final CreateFileRequestError VALIDATION_ERROR There was an error validating the request. For example, the title was invalid, or there were disallowed characters in the destination path.
 - 
INVALID_LOCATIONpublic static final CreateFileRequestError INVALID_LOCATION File requests are not available on the specified folder.
 - 
RATE_LIMITpublic static final CreateFileRequestError RATE_LIMIT The user has reached the rate limit for creating file requests. The limit is currently 4000 file requests total.
 
- 
 - 
Method Detail- 
valuespublic static CreateFileRequestError[] 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 (CreateFileRequestError c : CreateFileRequestError.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CreateFileRequestError 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-