Class ArrayOfJournalContainedProperties
- java.lang.Object
-
- ietf.params.xml.ns.icalendar_2.ArrayOfJournalContainedProperties
-
public class ArrayOfJournalContainedProperties extends Object
From RFC 5545 Section 3.6.3 journalc = "BEGIN" ":" "VJOURNAL" CRLF jourprop "END" ":" "VJOURNAL" CRLF jourprop = *( ; ; The following are REQUIRED, ; but MUST NOT occur more than once. ; dtstamp / uid / ; ; The following are OPTIONAL, ; but MUST NOT occur more than once. ; class / created / dtstart / last-mod / organizer / recurid / seq / status / summary / url / ; ; The following is OPTIONAL, ; but SHOULD NOT occur more than once. ; rrule / ; ; The following are OPTIONAL, ; and MAY occur more than once. ; attach / attendee / categories / comment / contact / description / exdate / related / rdate / rstatus / x-prop / iana-prop ; )Java class for ArrayOfJournalContainedProperties complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ArrayOfJournalContainedProperties"> <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}class"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}created"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}dtstart"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}last-modified"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}organizer"/> <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}url"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}rrule"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}exrule"/> <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}description"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}exdate"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}rdate"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}related"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}request-status"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Object>dtstampOrUidOrClazz
-
Constructor Summary
Constructors Constructor Description ArrayOfJournalContainedProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>getDtstampOrUidOrClazz()Gets the value of the dtstampOrUidOrClazz property.
-
-
-
Method Detail
-
getDtstampOrUidOrClazz
public List<Object> getDtstampOrUidOrClazz()
Gets the value of the dtstampOrUidOrClazz 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 dtstampOrUidOrClazz property.For example, to add a new item, do as follows:
getDtstampOrUidOrClazz().add(newItem);Objects of the following type(s) are allowed in the list
DtstampPropTypeUidPropTypeClassPropTypeCreatedPropTypeDtstartPropTypeLastModifiedPropTypeOrganizerPropTypeRecurrenceIdPropTypeSequencePropTypeStatusPropTypeSummaryPropTypeUrlPropTypeRrulePropTypeExrulePropTypeAttachPropTypeAttendeePropTypeCategoriesPropTypeCommentPropTypeContactPropTypeDescriptionPropTypeExdatePropTypeRdatePropTypeRelatedParamTypeRequestStatusPropType
-
-