public static enum GroupsGetInfoItem.Tag extends Enum<GroupsGetInfoItem.Tag>
GroupsGetInfoItem
.Enum Constant and Description |
---|
GROUP_INFO
Info about a group.
|
ID_NOT_FOUND
An ID that was provided as a parameter to
DbxTeamTeamRequests.groupsGetInfo(com.dropbox.core.v2.team.GroupsSelector) , and did not match a corresponding
group. |
Modifier and Type | Method and Description |
---|---|
static GroupsGetInfoItem.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupsGetInfoItem.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupsGetInfoItem.Tag ID_NOT_FOUND
DbxTeamTeamRequests.groupsGetInfo(com.dropbox.core.v2.team.GroupsSelector)
, and did not match a corresponding
group. The ID can be a group ID, or an external ID, depending on how
the method was called.public static final GroupsGetInfoItem.Tag GROUP_INFO
public static GroupsGetInfoItem.Tag[] values()
for (GroupsGetInfoItem.Tag c : GroupsGetInfoItem.Tag.values()) System.out.println(c);
public static GroupsGetInfoItem.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