Class ArrayOfEventContainedProperties
- java.lang.Object
-
- ietf.params.xml.ns.icalendar_2.ArrayOfEventContainedProperties
-
public class ArrayOfEventContainedProperties extends Object
From RFC 5545 Section 3.6.1 eventc = "BEGIN" ":" "VEVENT" CRLF eventprop *alarmc "END" ":" "VEVENT" CRLF eventprop = *( ; ; The following are REQUIRED, ; but MUST NOT occur more than once. ; dtstamp / uid / ; ; The following is REQUIRED if the component ; appears in an iCalendar object that doesn't ; specify the "METHOD" property; otherwise, it ; is OPTIONAL; in any case, it MUST NOT occur ; more than once. ; dtstart / ; ; The following are OPTIONAL, ; but MUST NOT occur more than once. ; class / created / description / geo / last-mod / location / organizer / priority / seq / status / summary / transp / url / recurid / ; ; The following is OPTIONAL, ; but SHOULD NOT occur more than once. ; rrule / ; ; Either 'dtend' or 'duration' MAY appear in ; a 'eventprop', but 'dtend' and 'duration' ; MUST NOT occur in the same 'eventprop'. ; dtend / duration / ; ; The following are OPTIONAL, ; and MAY occur more than once. ; attach / attendee / categories / comment / contact / exdate / rstatus / related / resources / rdate / x-prop / iana-prop ; )Java class for ArrayOfEventContainedProperties complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ArrayOfEventContainedProperties"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}dtstamp"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}uid"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}dtstart"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}class"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}created"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}description"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}geo"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}last-modified"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}location"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}organizer"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}priority"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}recurrence-id"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}sequence"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}status"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}summary"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}transp"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}url"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}rrule"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}exrule"/> <choice> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}dtend"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}duration"/> </choice> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}attach"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}attendee"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}categories"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}comment"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}contact"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}exdate"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}request-status"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}related"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}resources"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}rdate"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Object>dtstampOrUidOrDtstart
-
Constructor Summary
Constructors Constructor Description ArrayOfEventContainedProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>getDtstampOrUidOrDtstart()Gets the value of the dtstampOrUidOrDtstart property.
-
-
-
Method Detail
-
getDtstampOrUidOrDtstart
public List<Object> getDtstampOrUidOrDtstart()
Gets the value of the dtstampOrUidOrDtstart property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the dtstampOrUidOrDtstart property.For example, to add a new item, do as follows:
getDtstampOrUidOrDtstart().add(newItem);Objects of the following type(s) are allowed in the list
DtstampPropTypeUidPropTypeDtstartPropTypeClassPropTypeCreatedPropTypeDescriptionPropTypeGeoPropTypeLastModifiedPropTypeLocationPropTypeOrganizerPropTypePriorityPropTypeRecurrenceIdPropTypeSequencePropTypeStatusPropTypeSummaryPropTypeTranspPropTypeUrlPropTypeRrulePropTypeExrulePropTypeDtendPropTypeDurationPropTypeAttachPropTypeAttendeePropTypeCategoriesPropTypeCommentPropTypeContactPropTypeExdatePropTypeRequestStatusPropTypeRelatedParamTypeResourcesPropTypeRdatePropType
-
-