com.hubject.datex.energyinfrastructure.generated.common.Period Maven / Gradle / Ivy
Show all versions of convert Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.06 at 11:44:34 AM CEST
//
package com.hubject.datex.energyinfrastructure.generated.common;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for Period complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Period">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="startOfPeriod" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="endOfPeriod" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="periodName" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
* <element name="recurringTimePeriodOfDay" type="{http://datex2.eu/schema/3/common}TimePeriodOfDay" maxOccurs="unbounded" minOccurs="0"/>
* <element name="recurringDayWeekMonthPeriod" type="{http://datex2.eu/schema/3/common}DayWeekMonth" maxOccurs="unbounded" minOccurs="0"/>
* <element name="recurringSpecialDay" type="{http://datex2.eu/schema/3/common}SpecialDay" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_periodExtension" type="{http://datex2.eu/schema/3/common}_PeriodExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Period", propOrder = {
"startOfPeriod",
"endOfPeriod",
"periodName",
"recurringTimePeriodOfDay",
"recurringDayWeekMonthPeriod",
"recurringSpecialDay",
"periodExtension"
})
public class Period {
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startOfPeriod;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endOfPeriod;
protected MultilingualString periodName;
protected List recurringTimePeriodOfDay;
protected List recurringDayWeekMonthPeriod;
protected List recurringSpecialDay;
@XmlElement(name = "_periodExtension")
protected PeriodExtensionType periodExtension;
/**
* Gets the value of the startOfPeriod property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartOfPeriod() {
return startOfPeriod;
}
/**
* Sets the value of the startOfPeriod property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartOfPeriod(XMLGregorianCalendar value) {
this.startOfPeriod = value;
}
/**
* Gets the value of the endOfPeriod property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndOfPeriod() {
return endOfPeriod;
}
/**
* Sets the value of the endOfPeriod property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndOfPeriod(XMLGregorianCalendar value) {
this.endOfPeriod = value;
}
/**
* Gets the value of the periodName property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getPeriodName() {
return periodName;
}
/**
* Sets the value of the periodName property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setPeriodName(MultilingualString value) {
this.periodName = value;
}
/**
* Gets the value of the recurringTimePeriodOfDay 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 set
method for the recurringTimePeriodOfDay property.
*
*
* For example, to add a new item, do as follows:
*
* getRecurringTimePeriodOfDay().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TimePeriodOfDay }
*
*
*/
public List getRecurringTimePeriodOfDay() {
if (recurringTimePeriodOfDay == null) {
recurringTimePeriodOfDay = new ArrayList();
}
return this.recurringTimePeriodOfDay;
}
/**
* Gets the value of the recurringDayWeekMonthPeriod 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 set
method for the recurringDayWeekMonthPeriod property.
*
*
* For example, to add a new item, do as follows:
*
* getRecurringDayWeekMonthPeriod().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DayWeekMonth }
*
*
*/
public List getRecurringDayWeekMonthPeriod() {
if (recurringDayWeekMonthPeriod == null) {
recurringDayWeekMonthPeriod = new ArrayList();
}
return this.recurringDayWeekMonthPeriod;
}
/**
* Gets the value of the recurringSpecialDay 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 set
method for the recurringSpecialDay property.
*
*
* For example, to add a new item, do as follows:
*
* getRecurringSpecialDay().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SpecialDay }
*
*
*/
public List getRecurringSpecialDay() {
if (recurringSpecialDay == null) {
recurringSpecialDay = new ArrayList();
}
return this.recurringSpecialDay;
}
/**
* Gets the value of the periodExtension property.
*
* @return
* possible object is
* {@link PeriodExtensionType }
*
*/
public PeriodExtensionType getPeriodExtension() {
return periodExtension;
}
/**
* Sets the value of the periodExtension property.
*
* @param value
* allowed object is
* {@link PeriodExtensionType }
*
*/
public void setPeriodExtension(PeriodExtensionType value) {
this.periodExtension = value;
}
}