public enum DeliverMeetingRequests extends java.lang.Enum<DeliverMeetingRequests>
| Enum Constant and Description |
|---|
DELEGATES_AND_ME
Meeting requests are forwarded to the delegate and remain in the Inbox folder in the principal's mailbox.
|
DELEGATES_AND_SEND_INFORMATION_TO_ME
Meeting requests are forwarded to the delegate and remain in the Inbox folder in the principal's mailbox, but the Accept, Tentative, and Decline buttons do not appear in the Microsoft Office Outlook reading pane.
|
DELEGATES_ONLY
Meeting requests are forwarded to the delegate and moved to the Deleted Items folder in the principal's mailbox.
|
NONE
Meeting requests are not forwarded to the delegate.
|
| Modifier and Type | Method and Description |
|---|---|
static DeliverMeetingRequests |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeliverMeetingRequests[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeliverMeetingRequests DELEGATES_ONLY
public static final DeliverMeetingRequests DELEGATES_AND_ME
public static final DeliverMeetingRequests DELEGATES_AND_SEND_INFORMATION_TO_ME
public static final DeliverMeetingRequests NONE
public static DeliverMeetingRequests[] values()
for (DeliverMeetingRequests c : DeliverMeetingRequests.values()) System.out.println(c);
public static DeliverMeetingRequests 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