public enum MeetingRequestType extends java.lang.Enum<MeetingRequestType>
| Enum Constant and Description |
|---|
FULL_UPDATE
full Update
|
INFORMATIONAL_UPDATE
informational Update
|
NEW_MEETING_REQUEST
new Meeting Request
|
NONE
none
|
OUTDATED
outdated
|
PRINCIPAL_WANTS_COPY
principal Wants Copy
|
SILENT_UPDATE
silent Update
|
UNEXPECTED_VALUE
For MeetingRequestType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static MeetingRequestType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingRequestType NONE
public static final MeetingRequestType NEW_MEETING_REQUEST
public static final MeetingRequestType FULL_UPDATE
public static final MeetingRequestType INFORMATIONAL_UPDATE
public static final MeetingRequestType SILENT_UPDATE
public static final MeetingRequestType OUTDATED
public static final MeetingRequestType PRINCIPAL_WANTS_COPY
public static final MeetingRequestType UNEXPECTED_VALUE
public static MeetingRequestType[] values()
for (MeetingRequestType c : MeetingRequestType.values()) System.out.println(c);
public static MeetingRequestType 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