Enum MeetingResponseType
- java.lang.Object
-
- java.lang.Enum<MeetingResponseType>
-
- microsoft.exchange.webservices.data.core.enumeration.property.MeetingResponseType
-
- All Implemented Interfaces:
Serializable,Comparable<MeetingResponseType>
public enum MeetingResponseType extends Enum<MeetingResponseType>
Defines the types of response given to a meeting request.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MeetingResponseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MeetingResponseType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unknown
public static final MeetingResponseType Unknown
The Unknown.
-
Organizer
public static final MeetingResponseType Organizer
The Organizer.
-
Tentative
public static final MeetingResponseType Tentative
The Tentative.
-
Accept
public static final MeetingResponseType Accept
The Accept.
-
Decline
public static final MeetingResponseType Decline
The Decline.
-
NoResponseReceived
public static final MeetingResponseType NoResponseReceived
The No response received.
-
-
Method Detail
-
values
public static MeetingResponseType[] 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 (MeetingResponseType c : MeetingResponseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeetingResponseType 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
-
-