public enum SendMeetingInvitations extends java.lang.Enum<SendMeetingInvitations>
| Enum Constant and Description |
|---|
SEND_TO_ALL
Send meeting invitations to all attendees but do not save a copy of the meeting invitation in the organizer's Sent Items folder.
|
SEND_TO_ALL_AND_SAVE_COPY
Send meeting invitations to all attendees and save a copy of the meeting invitation in the organizer's Sent Items folder.
|
SEND_TO_NONE
Do not send meeting invitations.
|
| Modifier and Type | Method and Description |
|---|---|
static SendMeetingInvitations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SendMeetingInvitations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendMeetingInvitations SEND_TO_NONE
public static final SendMeetingInvitations SEND_TO_ALL
public static final SendMeetingInvitations SEND_TO_ALL_AND_SAVE_COPY
public static SendMeetingInvitations[] values()
for (SendMeetingInvitations c : SendMeetingInvitations.values()) System.out.println(c);
public static SendMeetingInvitations 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