public enum ExternalAudienceScope extends java.lang.Enum<ExternalAudienceScope>
| Enum Constant and Description |
|---|
ALL
all
|
CONTACTS_ONLY
contacts Only
|
NONE
none
|
UNEXPECTED_VALUE
For ExternalAudienceScope values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static ExternalAudienceScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExternalAudienceScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalAudienceScope NONE
public static final ExternalAudienceScope CONTACTS_ONLY
public static final ExternalAudienceScope ALL
public static final ExternalAudienceScope UNEXPECTED_VALUE
public static ExternalAudienceScope[] values()
for (ExternalAudienceScope c : ExternalAudienceScope.values()) System.out.println(c);
public static ExternalAudienceScope 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