public enum ExternalAudience extends java.lang.Enum<ExternalAudience>
| Enum Constant and Description |
|---|
ALL
E-mail senders outside the mailbox user's organization who send messages to the user will receive an external OOF message response.
|
KNOWN
E-mail senders outside the mailbox user's organization who send messages to the user will only receive an external OOF message response if the sender is in the user's Exchange store contact list.
|
NONE
E-mail senders outside the mailbox user's organization who send messages to the user will not receive an external OOF message response.
|
| Modifier and Type | Method and Description |
|---|---|
static ExternalAudience |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExternalAudience[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalAudience NONE
public static final ExternalAudience KNOWN
public static final ExternalAudience ALL
public static ExternalAudience[] values()
for (ExternalAudience c : ExternalAudience.values()) System.out.println(c);
public static ExternalAudience 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