public enum MeetingStatus extends java.lang.Enum<MeetingStatus>
| Enum Constant and Description |
|---|
CANCELED
The meeting has canceled.
|
CANCELED_ORGANIZER
The meeting organizer has canceled the meeting.
|
MEETING
The appointment has been or is to be made into a meeting.
|
NON_MEETING
This appointment has been scheduled by this messaging user alone and does not represent a meeting (default value).
|
NONE
None.
|
RECEIVED
The requests for the meeting have been received by the intended attendees.
|
| 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