Enum RelocationBatchError.Tag

    • Enum Constant Detail

      • CANT_COPY_SHARED_FOLDER

        public static final RelocationBatchError.Tag CANT_COPY_SHARED_FOLDER
        Shared folders can't be copied.
      • CANT_NEST_SHARED_FOLDER

        public static final RelocationBatchError.Tag CANT_NEST_SHARED_FOLDER
        Your move operation would result in nested shared folders. This is not allowed.
      • CANT_MOVE_FOLDER_INTO_ITSELF

        public static final RelocationBatchError.Tag CANT_MOVE_FOLDER_INTO_ITSELF
        You cannot move a folder into itself.
      • TOO_MANY_FILES

        public static final RelocationBatchError.Tag TOO_MANY_FILES
        The operation would involve more than 10,000 files and folders.
      • CANT_TRANSFER_OWNERSHIP

        public static final RelocationBatchError.Tag CANT_TRANSFER_OWNERSHIP
        Your move operation would result in an ownership transfer. You may reissue the request with the field RelocationArg.getAllowOwnershipTransfer() to true.
      • INSUFFICIENT_QUOTA

        public static final RelocationBatchError.Tag INSUFFICIENT_QUOTA
        The current user does not have enough space to move or copy the files.
      • INTERNAL_ERROR

        public static final RelocationBatchError.Tag INTERNAL_ERROR
        Something went wrong with the job on Dropbox's end. You'll need to verify that the action you were taking succeeded, and if not, try again. This should happen very rarely.
      • CANT_MOVE_SHARED_FOLDER

        public static final RelocationBatchError.Tag CANT_MOVE_SHARED_FOLDER
        Can't move the shared folder to the given destination.
      • CANT_MOVE_INTO_VAULT

        public static final RelocationBatchError.Tag CANT_MOVE_INTO_VAULT
        Some content cannot be moved into Vault under certain circumstances, see detailed error.
      • CANT_MOVE_INTO_FAMILY

        public static final RelocationBatchError.Tag CANT_MOVE_INTO_FAMILY
        Some content cannot be moved into the Family Room folder under certain circumstances, see detailed error.
      • OTHER

        public static final RelocationBatchError.Tag 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.

      • TOO_MANY_WRITE_OPERATIONS

        public static final RelocationBatchError.Tag TOO_MANY_WRITE_OPERATIONS
        There are too many write operations in user's Dropbox. Please retry this request.
    • Method Detail

      • values

        public static RelocationBatchError.Tag[] 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 (RelocationBatchError.Tag c : RelocationBatchError.Tag.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RelocationBatchError.Tag 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