public static enum MembersGetInfoItem.Tag extends Enum<MembersGetInfoItem.Tag>
MembersGetInfoItem
.Enum Constant and Description |
---|
ID_NOT_FOUND
An ID that was provided as a parameter to
DbxTeamTeamRequests.membersGetInfo(java.util.List) , and did not
match a corresponding user. |
MEMBER_INFO
Info about a team member.
|
Modifier and Type | Method and Description |
---|---|
static MembersGetInfoItem.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MembersGetInfoItem.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MembersGetInfoItem.Tag ID_NOT_FOUND
DbxTeamTeamRequests.membersGetInfo(java.util.List)
, and did not
match a corresponding user. This might be a team_member_id, an email,
or an external ID, depending on how the method was called.public static final MembersGetInfoItem.Tag MEMBER_INFO
public static MembersGetInfoItem.Tag[] values()
for (MembersGetInfoItem.Tag c : MembersGetInfoItem.Tag.values()) System.out.println(c);
public static MembersGetInfoItem.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