![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.MonitoringValidityConditionStructure Maven / Gradle / Ivy
Show all versions of siri-java-model Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:41 PM UTC
//
package uk.org.siri.siri21;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Allowed values for the type for Description of the monitoring conditions (frequency of mesurement, etc): an automatic monitoring of the status of a lift with pushed alert in case of incident is very different from a daily manual/visual check.
*
* Java class for MonitoringValidityConditionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MonitoringValidityConditionStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Period" type="{http://www.siri.org.uk/siri}HalfOpenTimestampOutputRangeStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Timeband" type="{http://www.siri.org.uk/siri}HalfOpenTimeRangeStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="DayType" type="{http://www.siri.org.uk/siri}DaysOfWeekEnumerationx" maxOccurs="unbounded" minOccurs="0"/>
* <element name="HolidayType" type="{http://www.siri.org.uk/siri}HolidayTypeEnumerationx" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MonitoringValidityConditionStructure", propOrder = {
"periods",
"timebands",
"dayTypes",
"holidayTypes"
})
public class MonitoringValidityConditionStructure
implements Serializable
{
@XmlElement(name = "Period")
protected List periods;
@XmlElement(name = "Timeband")
protected List timebands;
@XmlElement(name = "DayType")
@XmlSchemaType(name = "NMTOKEN")
protected List dayTypes;
@XmlElement(name = "HolidayType")
@XmlSchemaType(name = "NMTOKEN")
protected List holidayTypes;
/**
* Gets the value of the periods 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 set
method for the periods property.
*
*
* For example, to add a new item, do as follows:
*
* getPeriods().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HalfOpenTimestampOutputRangeStructure }
*
*
*/
public List getPeriods() {
if (periods == null) {
periods = new ArrayList();
}
return this.periods;
}
/**
* Gets the value of the timebands 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 set
method for the timebands property.
*
*
* For example, to add a new item, do as follows:
*
* getTimebands().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HalfOpenTimeRangeStructure }
*
*
*/
public List getTimebands() {
if (timebands == null) {
timebands = new ArrayList();
}
return this.timebands;
}
/**
* Gets the value of the dayTypes 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 set
method for the dayTypes property.
*
*
* For example, to add a new item, do as follows:
*
* getDayTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DaysOfWeekEnumerationx }
*
*
*/
public List getDayTypes() {
if (dayTypes == null) {
dayTypes = new ArrayList();
}
return this.dayTypes;
}
/**
* Gets the value of the holidayTypes 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 set
method for the holidayTypes property.
*
*
* For example, to add a new item, do as follows:
*
* getHolidayTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HolidayTypeEnumerationx }
*
*
*/
public List getHolidayTypes() {
if (holidayTypes == null) {
holidayTypes = new ArrayList();
}
return this.holidayTypes;
}
}