Package ietf.params.xml.ns.icalendar_2
Class ArrayOfStandardOrDaylightContainedProperties
- java.lang.Object
-
- ietf.params.xml.ns.icalendar_2.ArrayOfStandardOrDaylightContainedProperties
-
public class ArrayOfStandardOrDaylightContainedProperties extends Object
From RFC 5545 Section 3.6.5 standardc = "BEGIN" ":" "STANDARD" CRLF tzprop "END" ":" "STANDARD" CRLF daylightc = "BEGIN" ":" "DAYLIGHT" CRLF tzprop "END" ":" "DAYLIGHT" CRLF tzprop = *( ; ; The following are REQUIRED, ; but MUST NOT occur more than once. ; dtstart / tzoffsetto / tzoffsetfrom / ; ; The following is OPTIONAL, ; but SHOULD NOT occur more than once. ; rrule / ; ; The following are OPTIONAL, ; and MAY occur more than once. ; comment / rdate / tzname / x-prop / iana-prop ; )Java class for ArrayOfStandardOrDaylightContainedProperties complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ArrayOfStandardOrDaylightContainedProperties"> <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}dtstart"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}tzoffsetto"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}tzoffsetfrom"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}rrule"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}comment"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}rdate"/> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}tzname"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BasePropertyType>dtstartOrTzoffsettoOrTzoffsetfrom
-
Constructor Summary
Constructors Constructor Description ArrayOfStandardOrDaylightContainedProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BasePropertyType>getDtstartOrTzoffsettoOrTzoffsetfrom()Gets the value of the dtstartOrTzoffsettoOrTzoffsetfrom property.
-
-
-
Field Detail
-
dtstartOrTzoffsettoOrTzoffsetfrom
protected List<BasePropertyType> dtstartOrTzoffsettoOrTzoffsetfrom
-
-
Method Detail
-
getDtstartOrTzoffsettoOrTzoffsetfrom
public List<BasePropertyType> getDtstartOrTzoffsettoOrTzoffsetfrom()
Gets the value of the dtstartOrTzoffsettoOrTzoffsetfrom 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 dtstartOrTzoffsettoOrTzoffsetfrom property.For example, to add a new item, do as follows:
getDtstartOrTzoffsettoOrTzoffsetfrom().add(newItem);Objects of the following type(s) are allowed in the list
DtstartPropTypeTzoffsettoPropTypeTzoffsetfromPropTypeRrulePropTypeCommentPropTypeRdatePropTypeTznamePropType
-
-