public enum AllowInvitesFrom extends java.lang.Enum<AllowInvitesFrom>
Enum Constant and Description |
---|
ADMINS_AND_GUEST_INVITERS
admins And Guest Inviters
|
ADMINS_GUEST_INVITERS_AND_ALL_MEMBERS
admins Guest Inviters And All Members
|
EVERYONE
everyone
|
NONE
none
|
UNEXPECTED_VALUE
For AllowInvitesFrom values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
Modifier and Type | Method and Description |
---|---|
static AllowInvitesFrom |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AllowInvitesFrom[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllowInvitesFrom NONE
public static final AllowInvitesFrom ADMINS_AND_GUEST_INVITERS
public static final AllowInvitesFrom ADMINS_GUEST_INVITERS_AND_ALL_MEMBERS
public static final AllowInvitesFrom EVERYONE
public static final AllowInvitesFrom UNKNOWN_FUTURE_VALUE
public static final AllowInvitesFrom UNEXPECTED_VALUE
public static AllowInvitesFrom[] values()
for (AllowInvitesFrom c : AllowInvitesFrom.values()) System.out.println(c);
public static AllowInvitesFrom 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