public enum AllowedAudiences extends Enum<AllowedAudiences> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
CONTACTS |
EVERYONE |
FAMILY |
FEDERATED_ORGANIZATIONS |
GROUP_MEMBERS |
ME |
ORGANIZATION |
UNKNOWN_FUTURE_VALUE |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static AllowedAudiences |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AllowedAudiences[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllowedAudiences ME
public static final AllowedAudiences FAMILY
public static final AllowedAudiences CONTACTS
public static final AllowedAudiences GROUP_MEMBERS
public static final AllowedAudiences ORGANIZATION
public static final AllowedAudiences FEDERATED_ORGANIZATIONS
public static final AllowedAudiences EVERYONE
public static final AllowedAudiences UNKNOWN_FUTURE_VALUE
public static AllowedAudiences[] values()
for (AllowedAudiences c : AllowedAudiences.values()) System.out.println(c);
public static AllowedAudiences 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 nullpublic String enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2020. All rights reserved.