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