Enum MeetingRequestType
- java.lang.Object
-
- java.lang.Enum<MeetingRequestType>
-
- microsoft.exchange.webservices.data.core.enumeration.service.MeetingRequestType
-
- All Implemented Interfaces:
Serializable,Comparable<MeetingRequestType>
public enum MeetingRequestType extends Enum<MeetingRequestType>
Defines the type of a meeting request.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FullUpdateThe Full update.InformationalUpdateThe Informational update.NewMeetingRequestThe New meeting request.NoneThe None.OutdatedThe Outdated.PrincipalWantsCopyThe Principal wants copy.SilentUpdateThe Silent update.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MeetingRequestTypevalueOf(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.
-
-
-
Enum Constant Detail
-
None
public static final MeetingRequestType None
The None.
-
FullUpdate
public static final MeetingRequestType FullUpdate
The Full update.
-
InformationalUpdate
public static final MeetingRequestType InformationalUpdate
The Informational update.
-
NewMeetingRequest
public static final MeetingRequestType NewMeetingRequest
The New meeting request.
-
Outdated
public static final MeetingRequestType Outdated
The Outdated.
-
SilentUpdate
public static final MeetingRequestType SilentUpdate
The Silent update.
-
PrincipalWantsCopy
public static final MeetingRequestType PrincipalWantsCopy
The Principal wants copy.
-
-
Method Detail
-
values
public static MeetingRequestType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MeetingRequestType c : MeetingRequestType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeetingRequestType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-