Class OverallPeriod
- java.lang.Object
-
- eu.datex2.siri21.schema._2_0rc1._2_0.OverallPeriod
-
- All Implemented Interfaces:
Serializable
public class OverallPeriod extends Object implements Serializable
Java class for OverallPeriod complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OverallPeriod"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="overallStartTime" type="{http://datex2.eu/schema/2_0RC1/2_0}DateTime"/> <element name="overallEndTime" type="{http://datex2.eu/schema/2_0RC1/2_0}DateTime" minOccurs="0"/> <element name="validPeriod" type="{http://datex2.eu/schema/2_0RC1/2_0}Period" maxOccurs="unbounded" minOccurs="0"/> <element name="exceptionPeriod" type="{http://datex2.eu/schema/2_0RC1/2_0}Period" maxOccurs="unbounded" minOccurs="0"/> <element name="overallPeriodExtension" type="{http://datex2.eu/schema/2_0RC1/2_0}ExtensionType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Period>exceptionPeriodsprotected ZonedDateTimeoverallEndTimeprotected ExtensionTypeoverallPeriodExtensionprotected ZonedDateTimeoverallStartTimeprotected List<Period>validPeriods
-
Constructor Summary
Constructors Constructor Description OverallPeriod()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Period>getExceptionPeriods()Gets the value of the exceptionPeriods property.ZonedDateTimegetOverallEndTime()Gets the value of the overallEndTime property.ExtensionTypegetOverallPeriodExtension()Gets the value of the overallPeriodExtension property.ZonedDateTimegetOverallStartTime()Gets the value of the overallStartTime property.List<Period>getValidPeriods()Gets the value of the validPeriods property.voidsetOverallEndTime(ZonedDateTime value)Sets the value of the overallEndTime property.voidsetOverallPeriodExtension(ExtensionType value)Sets the value of the overallPeriodExtension property.voidsetOverallStartTime(ZonedDateTime value)Sets the value of the overallStartTime property.
-
-
-
Field Detail
-
overallStartTime
protected ZonedDateTime overallStartTime
-
overallEndTime
protected ZonedDateTime overallEndTime
-
overallPeriodExtension
protected ExtensionType overallPeriodExtension
-
-
Method Detail
-
getOverallStartTime
public ZonedDateTime getOverallStartTime()
Gets the value of the overallStartTime property.- Returns:
- possible object is
String
-
setOverallStartTime
public void setOverallStartTime(ZonedDateTime value)
Sets the value of the overallStartTime property.- Parameters:
value- allowed object isString
-
getOverallEndTime
public ZonedDateTime getOverallEndTime()
Gets the value of the overallEndTime property.- Returns:
- possible object is
String
-
setOverallEndTime
public void setOverallEndTime(ZonedDateTime value)
Sets the value of the overallEndTime property.- Parameters:
value- allowed object isString
-
getValidPeriods
public List<Period> getValidPeriods()
Gets the value of the validPeriods 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 Jakarta XML Binding object. This is why there is not a
setmethod for the validPeriods property.For example, to add a new item, do as follows:
getValidPeriods().add(newItem);Objects of the following type(s) are allowed in the list
Period
-
getExceptionPeriods
public List<Period> getExceptionPeriods()
Gets the value of the exceptionPeriods 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 Jakarta XML Binding object. This is why there is not a
setmethod for the exceptionPeriods property.For example, to add a new item, do as follows:
getExceptionPeriods().add(newItem);Objects of the following type(s) are allowed in the list
Period
-
getOverallPeriodExtension
public ExtensionType getOverallPeriodExtension()
Gets the value of the overallPeriodExtension property.- Returns:
- possible object is
ExtensionType
-
setOverallPeriodExtension
public void setOverallPeriodExtension(ExtensionType value)
Sets the value of the overallPeriodExtension property.- Parameters:
value- allowed object isExtensionType
-
-