Enum Class MembersRemoveError

java.lang.Object
java.lang.Enum<MembersRemoveError>
com.dropbox.core.v2.team.MembersRemoveError
All Implemented Interfaces:
Serializable, Comparable<MembersRemoveError>, Constable

public enum MembersRemoveError extends Enum<MembersRemoveError>
  • Enum Constant Details

    • USER_NOT_FOUND

      public static final MembersRemoveError 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

      public static final MembersRemoveError USER_NOT_IN_TEAM
      The user is not a member of the team.
    • OTHER

      public static final MembersRemoveError 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

      public static final MembersRemoveError TRANSFER_IN_PROGRESS
      Cannot permanently delete files while it's being transferred.
    • ALREADY_TRANSFERRED

      public static final MembersRemoveError ALREADY_TRANSFERRED
      Cannot permanently delete files that have already been transferred.
    • ALREADY_TRANSFERRED_OR_DELETED

      public static final MembersRemoveError ALREADY_TRANSFERRED_OR_DELETED
      Cannot permanently delete files that have already been transferred or deleted.
    • REMOVED_AND_TRANSFER_DEST_SHOULD_DIFFER

      public static final MembersRemoveError REMOVED_AND_TRANSFER_DEST_SHOULD_DIFFER
      Expected removed user and transfer_dest user to be different.
    • REMOVED_AND_TRANSFER_ADMIN_SHOULD_DIFFER

      public static final MembersRemoveError REMOVED_AND_TRANSFER_ADMIN_SHOULD_DIFFER
      Expected removed user and transfer_admin user to be different.
    • TRANSFER_DEST_USER_NOT_FOUND

      public static final MembersRemoveError TRANSFER_DEST_USER_NOT_FOUND
      No matching user found for the argument transfer_dest_id.
    • TRANSFER_DEST_USER_NOT_IN_TEAM

      public static final MembersRemoveError TRANSFER_DEST_USER_NOT_IN_TEAM
      The provided transfer_dest_id does not exist on this team.
    • TRANSFER_ADMIN_USER_NOT_IN_TEAM

      public static final MembersRemoveError TRANSFER_ADMIN_USER_NOT_IN_TEAM
      The provided transfer_admin_id does not exist on this team.
    • TRANSFER_ADMIN_USER_NOT_FOUND

      public static final MembersRemoveError TRANSFER_ADMIN_USER_NOT_FOUND
      No matching user found for the argument transfer_admin_id.
    • UNSPECIFIED_TRANSFER_ADMIN_ID

      public static final MembersRemoveError UNSPECIFIED_TRANSFER_ADMIN_ID
      The transfer_admin_id argument must be provided when file transfer is requested.
    • TRANSFER_ADMIN_IS_NOT_ADMIN

      public static final MembersRemoveError TRANSFER_ADMIN_IS_NOT_ADMIN
      Specified transfer_admin user is not a team admin.
    • RECIPIENT_NOT_VERIFIED

      public static final MembersRemoveError RECIPIENT_NOT_VERIFIED
      The recipient user's email is not verified.
    • REMOVE_LAST_ADMIN

      public static final MembersRemoveError REMOVE_LAST_ADMIN
      The user is the last admin of the team, so it cannot be removed from it.
    • CANNOT_KEEP_ACCOUNT_AND_TRANSFER

      public static final MembersRemoveError 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

      public static final MembersRemoveError 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 to false.
    • CANNOT_KEEP_ACCOUNT_AND_PERMANENTLY_DELETE

      public static final MembersRemoveError 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 to false.
    • EMAIL_ADDRESS_TOO_LONG_TO_BE_DISABLED

      public static final MembersRemoveError EMAIL_ADDRESS_TOO_LONG_TO_BE_DISABLED
      The email address of the user is too long to be disabled.
    • CANNOT_KEEP_INVITED_USER_ACCOUNT

      public static final MembersRemoveError CANNOT_KEEP_INVITED_USER_ACCOUNT
      Cannot keep account of an invited user.
    • CANNOT_RETAIN_SHARES_WHEN_DATA_WIPED

      public static final MembersRemoveError 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 to false.
    • CANNOT_RETAIN_SHARES_WHEN_NO_ACCOUNT_KEPT

      public static final MembersRemoveError 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 to true.
    • CANNOT_RETAIN_SHARES_WHEN_TEAM_EXTERNAL_SHARING_OFF

      public static final MembersRemoveError 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

      public static final MembersRemoveError CANNOT_KEEP_ACCOUNT
      Only a team admin, can convert this account to a Basic account.
    • CANNOT_KEEP_ACCOUNT_REQUIRED_TO_SIGN_TOS

      public static final MembersRemoveError 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

      public static final MembersRemoveError CANNOT_PERMANENTLY_DELETE_AND_TRANSFER
      Cannot permanently delete files and transfer the data to another user at the same time.
    • MEMBER_IS_TRANSFER_DESTINATION

      public static final MembersRemoveError 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

      public static MembersRemoveError[] 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

      public static MembersRemoveError valueOf(String name)
      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 name
      NullPointerException - if the argument is null