Package uk.org.ifopt.siri13
Class ValidityConditionsStructure
- java.lang.Object
-
- uk.org.ifopt.siri13.ValidityConditionsStructure
-
- All Implemented Interfaces:
Serializable
public class ValidityConditionsStructure extends Object implements Serializable
A collection of one or more validity conditionsJava class for ValidityConditionsStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ValidityConditionsStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="ValidityCondition" type="{http://www.ifopt.org.uk/ifopt}ValidityConditionStructure" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ValidityConditionStructure>validityConditions
-
Constructor Summary
Constructors Constructor Description ValidityConditionsStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ValidityConditionStructure>getValidityConditions()Gets the value of the validityConditions property.
-
-
-
Field Detail
-
validityConditions
protected List<ValidityConditionStructure> validityConditions
-
-
Method Detail
-
getValidityConditions
public List<ValidityConditionStructure> getValidityConditions()
Gets the value of the validityConditions 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 validityConditions property.For example, to add a new item, do as follows:
getValidityConditions().add(newItem);Objects of the following type(s) are allowed in the list
ValidityConditionStructure
-
-