Class MonitoringValidityConditionStructure
- java.lang.Object
-
- uk.org.siri.siri14.MonitoringValidityConditionStructure
-
- All Implemented Interfaces:
Serializable
public class MonitoringValidityConditionStructure extends Object implements Serializable
Type for Description of the monitoring conditions (frequency of mesurement, etc): an automatic monitoring of the satus 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}HalfOpenTimestampRangeStructure" 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>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DaysOfWeekEnumerationx>dayTypesprotected List<HolidayTypeEnumerationx>holidayTypesprotected List<HalfOpenTimestampRangeStructure>periodsprotected List<HalfOpenTimeRangeStructure>timebands
-
Constructor Summary
Constructors Constructor Description MonitoringValidityConditionStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DaysOfWeekEnumerationx>getDayTypes()Gets the value of the dayTypes property.List<HolidayTypeEnumerationx>getHolidayTypes()Gets the value of the holidayTypes property.List<HalfOpenTimestampRangeStructure>getPeriods()Gets the value of the periods property.List<HalfOpenTimeRangeStructure>getTimebands()Gets the value of the timebands property.
-
-
-
Field Detail
-
periods
protected List<HalfOpenTimestampRangeStructure> periods
-
timebands
protected List<HalfOpenTimeRangeStructure> timebands
-
dayTypes
protected List<DaysOfWeekEnumerationx> dayTypes
-
holidayTypes
protected List<HolidayTypeEnumerationx> holidayTypes
-
-
Method Detail
-
getPeriods
public List<HalfOpenTimestampRangeStructure> getPeriods()
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
setmethod 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
HalfOpenTimestampRangeStructure
-
getTimebands
public List<HalfOpenTimeRangeStructure> getTimebands()
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
setmethod 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
HalfOpenTimeRangeStructure
-
getDayTypes
public List<DaysOfWeekEnumerationx> getDayTypes()
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
setmethod 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
DaysOfWeekEnumerationx
-
getHolidayTypes
public List<HolidayTypeEnumerationx> getHolidayTypes()
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
setmethod 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
HolidayTypeEnumerationx
-
-