public static enum UserSelectorArg.Tag extends Enum<UserSelectorArg.Tag>
UserSelectorArg
.Enum Constant and Description |
---|
EMAIL |
EXTERNAL_ID |
TEAM_MEMBER_ID |
Modifier and Type | Method and Description |
---|---|
static UserSelectorArg.Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserSelectorArg.Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserSelectorArg.Tag TEAM_MEMBER_ID
public static final UserSelectorArg.Tag EXTERNAL_ID
public static final UserSelectorArg.Tag EMAIL
public static UserSelectorArg.Tag[] values()
for (UserSelectorArg.Tag c : UserSelectorArg.Tag.values()) System.out.println(c);
public static UserSelectorArg.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