public enum MeetingMessageType extends java.lang.Enum<MeetingMessageType>
| Enum Constant and Description |
|---|
MEETING_ACCEPTED
meeting Accepted
|
MEETING_CANCELLED
meeting Cancelled
|
MEETING_DECLINED
meeting Declined
|
MEETING_REQUEST
meeting Request
|
MEETING_TENATIVELY_ACCEPTED
meeting Tenatively Accepted
|
NONE
none
|
UNEXPECTED_VALUE
For MeetingMessageType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static MeetingMessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingMessageType NONE
public static final MeetingMessageType MEETING_REQUEST
public static final MeetingMessageType MEETING_CANCELLED
public static final MeetingMessageType MEETING_ACCEPTED
public static final MeetingMessageType MEETING_TENATIVELY_ACCEPTED
public static final MeetingMessageType MEETING_DECLINED
public static final MeetingMessageType UNEXPECTED_VALUE
public static MeetingMessageType[] values()
for (MeetingMessageType c : MeetingMessageType.values()) System.out.println(c);
public static MeetingMessageType 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