public static enum AddMemberSelectorError.Tag extends Enum<AddMemberSelectorError.Tag>
AddMemberSelectorError
.Enum Constant and Description |
---|
AUTOMATIC_GROUP
Automatically created groups can only be added to team folders.
|
GROUP_DELETED
At least one of the specified groups in
AddFolderMemberArg.getMembers() is deleted. |
GROUP_NOT_ON_TEAM
Sharing to a group that is not on the current user's team.
|
INVALID_DROPBOX_ID
The value is the ID that could not be identified.
|
INVALID_EMAIL
The value is the e-email address that is malformed.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox
servers.
|
UNVERIFIED_DROPBOX_ID
The value is the ID of the Dropbox user with an unverified e-mail
address.
|
Modifier and Type | Method and Description |
---|---|
static AddMemberSelectorError.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddMemberSelectorError.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddMemberSelectorError.Tag AUTOMATIC_GROUP
public static final AddMemberSelectorError.Tag INVALID_DROPBOX_ID
public static final AddMemberSelectorError.Tag INVALID_EMAIL
public static final AddMemberSelectorError.Tag UNVERIFIED_DROPBOX_ID
public static final AddMemberSelectorError.Tag GROUP_DELETED
AddFolderMemberArg.getMembers()
is deleted.public static final AddMemberSelectorError.Tag GROUP_NOT_ON_TEAM
public static final AddMemberSelectorError.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 AddMemberSelectorError.Tag[] values()
for (AddMemberSelectorError.Tag c : AddMemberSelectorError.Tag.values()) System.out.println(c);
public static AddMemberSelectorError.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