public enum TeamInviteModeEnum extends java.lang.Enum<TeamInviteModeEnum>
Enum Constant and Description |
---|
All
All members can invite users to join a group
|
Manager
Only administrators can invite users to join a group (default)
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static TeamInviteModeEnum |
typeOfValue(int value) |
static TeamInviteModeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TeamInviteModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeamInviteModeEnum Manager
public static final TeamInviteModeEnum All
public static TeamInviteModeEnum[] values()
for (TeamInviteModeEnum c : TeamInviteModeEnum.values()) System.out.println(c);
public static TeamInviteModeEnum 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 nullpublic static TeamInviteModeEnum typeOfValue(int value)
public int getValue()