public static enum RemoveFolderMemberError.Tag extends Enum<RemoveFolderMemberError.Tag>
RemoveFolderMemberError
.Enum Constant and Description |
---|
ACCESS_ERROR |
FOLDER_OWNER
The target user is the owner of the shared folder.
|
GROUP_ACCESS
The target user has access to the shared folder via a group.
|
MEMBER_ERROR |
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 RemoveFolderMemberError.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoveFolderMemberError.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoveFolderMemberError.Tag ACCESS_ERROR
public static final RemoveFolderMemberError.Tag MEMBER_ERROR
public static final RemoveFolderMemberError.Tag FOLDER_OWNER
public static final RemoveFolderMemberError.Tag GROUP_ACCESS
public static final RemoveFolderMemberError.Tag TEAM_FOLDER
public static final RemoveFolderMemberError.Tag NO_PERMISSION
public static final RemoveFolderMemberError.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 RemoveFolderMemberError.Tag[] values()
for (RemoveFolderMemberError.Tag c : RemoveFolderMemberError.Tag.values()) System.out.println(c);
public static RemoveFolderMemberError.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