public enum MembersRemoveError extends java.lang.Enum<MembersRemoveError>
Enum Constant and Description |
---|
CANNOT_KEEP_ACCOUNT
Only a team admin, can convert this account to a Basic account.
|
CANNOT_KEEP_ACCOUNT_AND_DELETE_DATA
Cannot keep account and delete the data at the same time.
|
CANNOT_KEEP_ACCOUNT_AND_TRANSFER
Cannot keep account and transfer the data to another user at the same
time.
|
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_KEEP_ACCOUNT_UNDER_LEGAL_HOLD
This user content is currently being held.
|
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.
|
CANNOT_RETAIN_SHARES_WHEN_NO_ACCOUNT_KEPT
The user's account must be kept in order to retain team shares.
|
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.
|
EMAIL_ADDRESS_TOO_LONG_TO_BE_DISABLED
The email address of the user is too long to be disabled.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
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.
|
REMOVED_AND_TRANSFER_ADMIN_SHOULD_DIFFER
Expected removed user and transfer_admin user to be different.
|
REMOVED_AND_TRANSFER_DEST_SHOULD_DIFFER
Expected removed user and transfer_dest user to be different.
|
TRANSFER_ADMIN_IS_NOT_ADMIN
Specified transfer_admin user is not a team admin.
|
TRANSFER_ADMIN_USER_NOT_FOUND
No matching user found for the argument transfer_admin_id.
|
TRANSFER_ADMIN_USER_NOT_IN_TEAM
The provided transfer_admin_id does not exist on this team.
|
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.
|
UNSPECIFIED_TRANSFER_ADMIN_ID
The transfer_admin_id argument must be provided when file transfer is
requested.
|
USER_NOT_FOUND
No matching user found.
|
USER_NOT_IN_TEAM
The user is not a member of the team.
|
Modifier and Type | Method and Description |
---|---|
static MembersRemoveError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MembersRemoveError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MembersRemoveError USER_NOT_FOUND
public static final MembersRemoveError USER_NOT_IN_TEAM
public static final MembersRemoveError 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 MembersRemoveError REMOVED_AND_TRANSFER_DEST_SHOULD_DIFFER
public static final MembersRemoveError REMOVED_AND_TRANSFER_ADMIN_SHOULD_DIFFER
public static final MembersRemoveError TRANSFER_DEST_USER_NOT_FOUND
public static final MembersRemoveError TRANSFER_DEST_USER_NOT_IN_TEAM
public static final MembersRemoveError TRANSFER_ADMIN_USER_NOT_IN_TEAM
public static final MembersRemoveError TRANSFER_ADMIN_USER_NOT_FOUND
public static final MembersRemoveError UNSPECIFIED_TRANSFER_ADMIN_ID
public static final MembersRemoveError TRANSFER_ADMIN_IS_NOT_ADMIN
public static final MembersRemoveError RECIPIENT_NOT_VERIFIED
public static final MembersRemoveError REMOVE_LAST_ADMIN
public static final MembersRemoveError CANNOT_KEEP_ACCOUNT_AND_TRANSFER
public static final MembersRemoveError CANNOT_KEEP_ACCOUNT_AND_DELETE_DATA
false
.public static final MembersRemoveError EMAIL_ADDRESS_TOO_LONG_TO_BE_DISABLED
public static final MembersRemoveError CANNOT_KEEP_INVITED_USER_ACCOUNT
public static final MembersRemoveError CANNOT_RETAIN_SHARES_WHEN_DATA_WIPED
false
.public static final MembersRemoveError CANNOT_RETAIN_SHARES_WHEN_NO_ACCOUNT_KEPT
true
.public static final MembersRemoveError CANNOT_RETAIN_SHARES_WHEN_TEAM_EXTERNAL_SHARING_OFF
public static final MembersRemoveError CANNOT_KEEP_ACCOUNT
public static final MembersRemoveError CANNOT_KEEP_ACCOUNT_UNDER_LEGAL_HOLD
public static final MembersRemoveError CANNOT_KEEP_ACCOUNT_REQUIRED_TO_SIGN_TOS
public static MembersRemoveError[] values()
for (MembersRemoveError c : MembersRemoveError.values()) System.out.println(c);
public static MembersRemoveError 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