public static enum TransferFolderError.Tag extends Enum<TransferFolderError.Tag>
TransferFolderError
.Enum Constant and Description |
---|
ACCESS_ERROR |
INVALID_DROPBOX_ID
TransferFolderArg.getToDropboxId() is invalid. |
NEW_OWNER_EMAIL_UNVERIFIED
The new designated owner's e-mail address is unverified.
|
NEW_OWNER_NOT_A_MEMBER
The new designated owner is not currently a member of the shared
folder.
|
NEW_OWNER_UNMOUNTED
The new designated owner has not added the folder to their Dropbox.
|
NO_PERMISSION
The current user does not have permission to perform this action.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox
servers.
|
TEAM_FOLDER
This action cannot be performed on a team shared folder.
|
Modifier and Type | Method and Description |
---|---|
static TransferFolderError.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransferFolderError.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferFolderError.Tag ACCESS_ERROR
public static final TransferFolderError.Tag INVALID_DROPBOX_ID
TransferFolderArg.getToDropboxId()
is invalid.public static final TransferFolderError.Tag NEW_OWNER_NOT_A_MEMBER
public static final TransferFolderError.Tag NEW_OWNER_UNMOUNTED
public static final TransferFolderError.Tag NEW_OWNER_EMAIL_UNVERIFIED
public static final TransferFolderError.Tag TEAM_FOLDER
public static final TransferFolderError.Tag NO_PERMISSION
public static final TransferFolderError.Tag 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 TransferFolderError.Tag[] values()
for (TransferFolderError.Tag c : TransferFolderError.Tag.values()) System.out.println(c);
public static TransferFolderError.Tag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null