public static enum GroupMembersAddError.Tag extends Enum<GroupMembersAddError.Tag>
GroupMembersAddError
.Enum Constant and Description |
---|
DUPLICATE_USER
You cannot add duplicate users.
|
GROUP_NOT_FOUND
No matching group found.
|
GROUP_NOT_IN_TEAM
Group is not in this team.
|
MEMBERS_NOT_IN_TEAM
These members are not part of your team.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox
servers.
|
USER_CANNOT_BE_MANAGER_OF_COMPANY_MANAGED_GROUP
A company-managed group cannot be managed by a user.
|
USER_MUST_BE_ACTIVE_TO_BE_OWNER
A suspended user cannot be added to a group as
GroupAccessType.OWNER . |
USERS_NOT_FOUND
These users were not found in Dropbox.
|
Modifier and Type | Method and Description |
---|---|
static GroupMembersAddError.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupMembersAddError.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupMembersAddError.Tag GROUP_NOT_FOUND
public static final GroupMembersAddError.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 final GroupMembersAddError.Tag DUPLICATE_USER
public static final GroupMembersAddError.Tag GROUP_NOT_IN_TEAM
public static final GroupMembersAddError.Tag MEMBERS_NOT_IN_TEAM
DbxTeamTeamRequests.membersAdd(List,boolean)
endpoint.public static final GroupMembersAddError.Tag USERS_NOT_FOUND
public static final GroupMembersAddError.Tag USER_MUST_BE_ACTIVE_TO_BE_OWNER
GroupAccessType.OWNER
.public static final GroupMembersAddError.Tag USER_CANNOT_BE_MANAGER_OF_COMPANY_MANAGED_GROUP
public static GroupMembersAddError.Tag[] values()
for (GroupMembersAddError.Tag c : GroupMembersAddError.Tag.values()) System.out.println(c);
public static GroupMembersAddError.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