Class AffectedOperatorStructure
- java.lang.Object
-
- uk.org.siri.siri21.AffectedOperatorStructure
-
- All Implemented Interfaces:
Serializable
public class AffectedOperatorStructure extends Object implements Serializable
Type for Annotated reference to an OPERATOR affected by a SITUATION.Java class for AffectedOperatorStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AffectedOperatorStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="OperatorRef" type="{http://www.siri.org.uk/siri}OperatorRefStructure" minOccurs="0"/> <element name="OperatorName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/> <element name="OperatorShortName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/> <element name="OperationalUnitRef" type="{http://www.siri.org.uk/siri}OperationalUnitRefStructure" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Extensionsextensionsprotected List<OperationalUnitRefStructure>operationalUnitRevesprotected List<NaturalLanguageStringStructure>operatorNamesprotected OperatorRefStructureoperatorRefprotected List<NaturalLanguageStringStructure>operatorShortNames
-
Constructor Summary
Constructors Constructor Description AffectedOperatorStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExtensionsgetExtensions()Gets the value of the extensions property.List<OperationalUnitRefStructure>getOperationalUnitReves()Gets the value of the operationalUnitReves property.List<NaturalLanguageStringStructure>getOperatorNames()Gets the value of the operatorNames property.OperatorRefStructuregetOperatorRef()Gets the value of the operatorRef property.List<NaturalLanguageStringStructure>getOperatorShortNames()Gets the value of the operatorShortNames property.voidsetExtensions(Extensions value)Sets the value of the extensions property.voidsetOperatorRef(OperatorRefStructure value)Sets the value of the operatorRef property.
-
-
-
Field Detail
-
operatorRef
protected OperatorRefStructure operatorRef
-
operatorNames
protected List<NaturalLanguageStringStructure> operatorNames
-
operatorShortNames
protected List<NaturalLanguageStringStructure> operatorShortNames
-
operationalUnitReves
protected List<OperationalUnitRefStructure> operationalUnitReves
-
extensions
protected Extensions extensions
-
-
Method Detail
-
getOperatorRef
public OperatorRefStructure getOperatorRef()
Gets the value of the operatorRef property.- Returns:
- possible object is
OperatorRefStructure
-
setOperatorRef
public void setOperatorRef(OperatorRefStructure value)
Sets the value of the operatorRef property.- Parameters:
value- allowed object isOperatorRefStructure
-
getOperatorNames
public List<NaturalLanguageStringStructure> getOperatorNames()
Gets the value of the operatorNames 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 operatorNames property.For example, to add a new item, do as follows:
getOperatorNames().add(newItem);Objects of the following type(s) are allowed in the list
NaturalLanguageStringStructure
-
getOperatorShortNames
public List<NaturalLanguageStringStructure> getOperatorShortNames()
Gets the value of the operatorShortNames 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 operatorShortNames property.For example, to add a new item, do as follows:
getOperatorShortNames().add(newItem);Objects of the following type(s) are allowed in the list
NaturalLanguageStringStructure
-
getOperationalUnitReves
public List<OperationalUnitRefStructure> getOperationalUnitReves()
Gets the value of the operationalUnitReves 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 operationalUnitReves property.For example, to add a new item, do as follows:
getOperationalUnitReves().add(newItem);Objects of the following type(s) are allowed in the list
OperationalUnitRefStructure
-
getExtensions
public Extensions getExtensions()
Gets the value of the extensions property.- Returns:
- possible object is
Extensions
-
setExtensions
public void setExtensions(Extensions value)
Sets the value of the extensions property.- Parameters:
value- allowed object isExtensions
-
-