Class ArrayOfTodoContainedProperties
- java.lang.Object
-
- ietf.params.xml.ns.icalendar_2.ArrayOfTodoContainedProperties
-
public class ArrayOfTodoContainedProperties extends Object
From RFC 5545 Section 3.6.2 todoc = "BEGIN" ":" "VTODO" CRLF todoprop *alarmc "END" ":" "VTODO" CRLF todoprop = *( ; ; 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 / completed / created / description / dtstart / geo / last-mod / location / organizer / percent / priority / recurid / seq / status / summary / url / ; ; The following is OPTIONAL, ; but SHOULD NOT occur more than once. ; rrule / ; ; Either 'due' or 'duration' MAY appear in ; a 'todoprop', but 'due' and 'duration' ; MUST NOT occur in the same 'todoprop'. ; If 'duration' appear in a 'todoprop', ; then 'dtstart' MUST also appear in ; the same 'todoprop'. ; due / 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 ArrayOfTodoContainedProperties complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ArrayOfTodoContainedProperties"> <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}completed"/> <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}dtstart"/> <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}percent-complete"/> <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}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}due"/> <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>dtstampOrUidOrClazz
-
Constructor Summary
Constructors Constructor Description ArrayOfTodoContainedProperties()
-
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
DtstampPropTypeUidPropTypeClassPropTypeCompletedPropTypeCreatedPropTypeDescriptionPropTypeDtstartPropTypeGeoPropTypeLastModifiedPropTypeLocationPropTypeOrganizerPropTypePercentCompletePropTypePriorityPropTypeRecurrenceIdPropTypeSequencePropTypeStatusPropTypeSummaryPropTypeUrlPropTypeRrulePropTypeExrulePropTypeDuePropTypeDurationPropTypeAttachPropTypeAttendeePropTypeCategoriesPropTypeCommentPropTypeContactPropTypeExdatePropTypeRequestStatusPropTypeRelatedParamTypeResourcesPropTypeRdatePropType
-
-