public static enum TeamMemberStatus.Tag extends java.lang.Enum<TeamMemberStatus.Tag>
TeamMemberStatus.| Enum Constant and Description |
|---|
ACTIVE
User has successfully joined the team.
|
INVITED
User has been invited to a team, but has not joined the team yet.
|
REMOVED
User is no longer a member of the team.
|
SUSPENDED
User is no longer a member of the team, but the account can be
un-suspended, re-establishing the user as a team member.
|
| Modifier and Type | Method and Description |
|---|---|
static TeamMemberStatus.Tag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TeamMemberStatus.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeamMemberStatus.Tag ACTIVE
public static final TeamMemberStatus.Tag INVITED
public static final TeamMemberStatus.Tag SUSPENDED
public static final TeamMemberStatus.Tag REMOVED
public static TeamMemberStatus.Tag[] values()
for (TeamMemberStatus.Tag c : TeamMemberStatus.Tag.values()) System.out.println(c);
public static TeamMemberStatus.Tag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null