public enum MeetingStatus extends java.lang.Enum<MeetingStatus>
| Enum Constant and Description |
|---|
CANCELED
The scheduled meeting has been cancelled.
|
CANCELED_ORGANIZER
The scheduled meeting has been cancelled but still appears on the user's calendar.
|
MEETING
The meeting has been scheduled.
|
NON_MEETING
An Appointment item without attendees has been scheduled.
|
NONE
None.
|
RECEIVED
The meeting request has been received.
|
| Modifier and Type | Method and Description |
|---|---|
static MeetingStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingStatus NON_MEETING
public static final MeetingStatus MEETING
public static final MeetingStatus RECEIVED
public static final MeetingStatus CANCELED_ORGANIZER
public static final MeetingStatus CANCELED
public static final MeetingStatus NONE
public static MeetingStatus[] values()
for (MeetingStatus c : MeetingStatus.values()) System.out.println(c);
public static MeetingStatus 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