Overview

Represents a snapshot of a DateTimeRecurrenceSet which is an immutable object. Use method createDateTimeRecurrenceSet from to create DateTimeRecurrenceSet.

A DateTimeRecurrenceSet is a set of DateTime defined by the union of the IncludeDateTimes and the DateTime yielded by the InclusionRule starting at StartTime minus the ExcludeDateTimes.

Members

Name Type Description

excludeDateTimes

dateTime[]

Return an unmodifiable view of the ExcludeDateTimes attribute. This attribute is similar to the EXDATE property in iCalendar.

includeDateTimes

dateTime[]

Return an unmodifiable view of the IncludeDateTimes attribute. This attribute is simular the the RDATE attribute in RFC2445.

inclusionRule

string

A date time recurrence rule is a structured string as defined by iCalendar RFC 2445.

startDateTime

dateTime

Return the StartDateTime attribute. This attribute is the lower bound the dates yielded by the inclusion rule.

Hierarchy

Examples

Below are examples in XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:dateTimeRecurrenceSet xsi:type="obh:dateTimeRecurrenceSet" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <excludeDateTimes>your_dateTime_0</excludeDateTimes>
        <excludeDateTimes>your_dateTime_1</excludeDateTimes>
        <excludeDateTimes>your_dateTime_2</excludeDateTimes>
        <includeDateTimes>your_dateTime_0</includeDateTimes>
        <includeDateTimes>your_dateTime_1</includeDateTimes>
        <includeDateTimes>your_dateTime_2</includeDateTimes>
        <inclusionRule>your_string_0</inclusionRule>
        <startDateTime>your_dateTime_0</startDateTime>
</obh:dateTimeRecurrenceSet>

Referenced By Representaions