Enum DefaultExtendedPropertySet
- java.lang.Object
-
- java.lang.Enum<DefaultExtendedPropertySet>
-
- microsoft.exchange.webservices.data.core.enumeration.property.DefaultExtendedPropertySet
-
- All Implemented Interfaces:
Serializable,Comparable<DefaultExtendedPropertySet>
public enum DefaultExtendedPropertySet extends Enum<DefaultExtendedPropertySet>
Defines the default sets of extended property.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AddressThe Address.AppointmentThe Appointment.CalendarAssistantThe Calendar assistant.CommonThe Common.InternetHeadersThe Internet headers.MeetingThe Meeting.PublicStringsThe Public strings.TaskThe Task.UnifiedMessagingThe Unified messaging.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultExtendedPropertySetvalueOf(String name)Returns the enum constant of this type with the specified name.static DefaultExtendedPropertySet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Meeting
public static final DefaultExtendedPropertySet Meeting
The Meeting.
-
Appointment
public static final DefaultExtendedPropertySet Appointment
The Appointment.
-
Common
public static final DefaultExtendedPropertySet Common
The Common.
-
PublicStrings
public static final DefaultExtendedPropertySet PublicStrings
The Public strings.
-
Address
public static final DefaultExtendedPropertySet Address
The Address.
-
InternetHeaders
public static final DefaultExtendedPropertySet InternetHeaders
The Internet headers.
-
CalendarAssistant
public static final DefaultExtendedPropertySet CalendarAssistant
The Calendar assistant.
-
UnifiedMessaging
public static final DefaultExtendedPropertySet UnifiedMessaging
The Unified messaging.
-
Task
public static final DefaultExtendedPropertySet Task
The Task.
-
-
Method Detail
-
values
public static DefaultExtendedPropertySet[] 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 (DefaultExtendedPropertySet c : DefaultExtendedPropertySet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultExtendedPropertySet 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
-
-