public enum GroupMembersRemoveError extends Enum<GroupMembersRemoveError>
Enum Constant and Description |
---|
GROUP_NOT_FOUND
No matching group found.
|
GROUP_NOT_IN_TEAM
Group is not in this team.
|
MEMBER_NOT_IN_GROUP
At least one of the specified users is not a member of the group.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
Modifier and Type | Method and Description |
---|---|
static GroupMembersRemoveError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupMembersRemoveError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupMembersRemoveError GROUP_NOT_FOUND
public static final GroupMembersRemoveError 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 GroupMembersRemoveError MEMBER_NOT_IN_GROUP
public static final GroupMembersRemoveError GROUP_NOT_IN_TEAM
public static GroupMembersRemoveError[] values()
for (GroupMembersRemoveError c : GroupMembersRemoveError.values()) System.out.println(c);
public static GroupMembersRemoveError 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