Package com.dropbox.core.v2.team
Enum Class MembersRemoveError
- All Implemented Interfaces:
Serializable,Comparable<MembersRemoveError>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCannot permanently delete files that have already been transferred.Cannot permanently delete files that have already been transferred or deleted.Only a team admin, can convert this account to a Basic account.Cannot keep account and delete the data at the same time.Cannot keep account and permanently delete the data at the same time.Cannot keep account and transfer the data to another user at the same time.To convert this member to a Basic account, they'll first need to sign in to Dropbox and agree to the terms of service.This user content is currently being held.Cannot keep account of an invited user.Cannot permanently delete files and transfer the data to another user at the same time.Cannot retain team shares when the user's data is marked for deletion on their linked devices.The user's account must be kept in order to retain team shares.Externally sharing files, folders, and links must be enabled in team settings in order to retain team shares for the user.The email address of the user is too long to be disabled.This user is the active destination of an in-progress file transfer.Catch-all used for unknown tag values returned by the Dropbox servers.The recipient user's email is not verified.The user is the last admin of the team, so it cannot be removed from it.Expected removed user and transfer_admin user to be different.Expected removed user and transfer_dest user to be different.Specified transfer_admin user is not a team admin.No matching user found for the argument transfer_admin_id.The provided transfer_admin_id does not exist on this team.No matching user found for the argument transfer_dest_id.The provided transfer_dest_id does not exist on this team.Cannot permanently delete files while it's being transferred.The transfer_admin_id argument must be provided when file transfer is requested.No matching user found.The user is not a member of the team. -
Method Summary
Modifier and TypeMethodDescriptionstatic MembersRemoveErrorReturns the enum constant of this class with the specified name.static MembersRemoveError[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
USER_NOT_FOUND
No matching user found. The provided team_member_id, email, or external_id does not exist on this team. -
USER_NOT_IN_TEAM
The user is not a member of the team. -
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.
-
TRANSFER_IN_PROGRESS
Cannot permanently delete files while it's being transferred. -
ALREADY_TRANSFERRED
Cannot permanently delete files that have already been transferred. -
ALREADY_TRANSFERRED_OR_DELETED
Cannot permanently delete files that have already been transferred or deleted. -
REMOVED_AND_TRANSFER_DEST_SHOULD_DIFFER
Expected removed user and transfer_dest user to be different. -
REMOVED_AND_TRANSFER_ADMIN_SHOULD_DIFFER
Expected removed user and transfer_admin user to be different. -
TRANSFER_DEST_USER_NOT_FOUND
No matching user found for the argument transfer_dest_id. -
TRANSFER_DEST_USER_NOT_IN_TEAM
The provided transfer_dest_id does not exist on this team. -
TRANSFER_ADMIN_USER_NOT_IN_TEAM
The provided transfer_admin_id does not exist on this team. -
TRANSFER_ADMIN_USER_NOT_FOUND
No matching user found for the argument transfer_admin_id. -
UNSPECIFIED_TRANSFER_ADMIN_ID
The transfer_admin_id argument must be provided when file transfer is requested. -
TRANSFER_ADMIN_IS_NOT_ADMIN
Specified transfer_admin user is not a team admin. -
RECIPIENT_NOT_VERIFIED
The recipient user's email is not verified. -
REMOVE_LAST_ADMIN
The user is the last admin of the team, so it cannot be removed from it. -
CANNOT_KEEP_ACCOUNT_AND_TRANSFER
Cannot keep account and transfer the data to another user at the same time. -
CANNOT_KEEP_ACCOUNT_AND_DELETE_DATA
Cannot keep account and delete the data at the same time. To keep the account the argument wipe_data should be set tofalse. -
CANNOT_KEEP_ACCOUNT_AND_PERMANENTLY_DELETE
Cannot keep account and permanently delete the data at the same time. To keep the account the argument permanently_delete_files should be set tofalse. -
EMAIL_ADDRESS_TOO_LONG_TO_BE_DISABLED
The email address of the user is too long to be disabled. -
CANNOT_KEEP_INVITED_USER_ACCOUNT
Cannot keep account of an invited user. -
CANNOT_RETAIN_SHARES_WHEN_DATA_WIPED
Cannot retain team shares when the user's data is marked for deletion on their linked devices. The argument wipe_data should be set tofalse. -
CANNOT_RETAIN_SHARES_WHEN_NO_ACCOUNT_KEPT
The user's account must be kept in order to retain team shares. The argument keep_account should be set totrue. -
CANNOT_RETAIN_SHARES_WHEN_TEAM_EXTERNAL_SHARING_OFF
Externally sharing files, folders, and links must be enabled in team settings in order to retain team shares for the user. -
CANNOT_KEEP_ACCOUNT
Only a team admin, can convert this account to a Basic account. -
CANNOT_KEEP_ACCOUNT_UNDER_LEGAL_HOLD
This user content is currently being held. To convert this member's account to a Basic account, you'll first need to remove them from the hold. -
CANNOT_KEEP_ACCOUNT_REQUIRED_TO_SIGN_TOS
To convert this member to a Basic account, they'll first need to sign in to Dropbox and agree to the terms of service. -
CANNOT_PERMANENTLY_DELETE_AND_TRANSFER
Cannot permanently delete files and transfer the data to another user at the same time. -
MEMBER_IS_TRANSFER_DESTINATION
This user is the active destination of an in-progress file transfer. Wait for the transfer to complete before removing this member.
-
-
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
-