Class CalendarEventDetails
- java.lang.Object
-
- microsoft.exchange.webservices.data.property.complex.ComplexProperty
-
- microsoft.exchange.webservices.data.property.complex.availability.CalendarEventDetails
-
- All Implemented Interfaces:
ISelfValidate,ComplexFunctionDelegate<EwsServiceXmlReader>
public final class CalendarEventDetails extends ComplexProperty
Represents the details of a calendar event as returned by the GetUserAvailability operation.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCalendarEventDetails()Initializes a new instance of the CalendarEventDetails class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLocation()Gets the location of the calendar event.StringgetStoreId()Gets the store Id of the calendar event.StringgetSubject()Gets the subject of the calendar event.booleanisException()Gets a value indicating whether the calendar event is an exception in a recurring series.booleanisMeeting()Gets a value indicating whether the calendar event is a meeting.booleanisPrivate()Gets a value indicating whether the calendar event is private.booleanisRecurring()Gets a value indicating whether the calendar event is recurring.booleanisReminderSet()Gets a value indicating whether the calendar event has a reminder set.booleantryReadElementFromXml(EwsServiceXmlReader reader)Attempts to read the element at the reader's current position.-
Methods inherited from class microsoft.exchange.webservices.data.property.complex.ComplexProperty
addOnChangeEvent, canSetFieldValue, changed, clearChangeEvents, clearChangeLog, func, getNamespace, internalValidate, loadFromXml, loadFromXml, readAttributesFromXml, readTextValueFromXml, removeChangeEvent, setNamespace, tryReadElementFromXmlToPatch, updateFromXml, updateFromXml, validate, writeAttributesToXml, writeElementsToXml, writeToXml, writeToXml
-
-
-
-
Constructor Detail
-
CalendarEventDetails
protected CalendarEventDetails()
Initializes a new instance of the CalendarEventDetails class.
-
-
Method Detail
-
tryReadElementFromXml
public boolean tryReadElementFromXml(EwsServiceXmlReader reader) throws Exception
Attempts to read the element at the reader's current position.- Overrides:
tryReadElementFromXmlin classComplexProperty- Parameters:
reader- the reader- Returns:
- True if the element was read, false otherwise.
- Throws:
Exception- the exception
-
getStoreId
public String getStoreId()
Gets the store Id of the calendar event.- Returns:
- the store id
-
getSubject
public String getSubject()
Gets the subject of the calendar event.- Returns:
- the subject
-
getLocation
public String getLocation()
Gets the location of the calendar event.- Returns:
- the location
-
isMeeting
public boolean isMeeting()
Gets a value indicating whether the calendar event is a meeting.- Returns:
- true, if is meeting
-
isRecurring
public boolean isRecurring()
Gets a value indicating whether the calendar event is recurring.- Returns:
- true, if is recurring
-
isException
public boolean isException()
Gets a value indicating whether the calendar event is an exception in a recurring series.- Returns:
- true, if is exception
-
isReminderSet
public boolean isReminderSet()
Gets a value indicating whether the calendar event has a reminder set.- Returns:
- true, if is reminder set
-
isPrivate
public boolean isPrivate()
Gets a value indicating whether the calendar event is private.- Returns:
- true, if is private
-
-