Package uk.org.siri.siri20
Class PlannedStopAssignmentStructure
- java.lang.Object
-
- uk.org.siri.siri20.PlannedStopAssignmentStructure
-
- All Implemented Interfaces:
Serializable
public class PlannedStopAssignmentStructure extends Object implements Serializable
Type for assignment of a SCHEDULED STOP POINT to a specific QUAY or platform +SIRI v2.0.Java class for PlannedStopAssignmentStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PlannedStopAssignmentStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="AimedQuayRef" type="{http://www.siri.org.uk/siri}QuayRefStructure" minOccurs="0"/> <element name="AimedQuayName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<NaturalLanguageStringStructure>aimedQuayNamesprotected QuayRefStructureaimedQuayRef
-
Constructor Summary
Constructors Constructor Description PlannedStopAssignmentStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<NaturalLanguageStringStructure>getAimedQuayNames()Gets the value of the aimedQuayNames property.QuayRefStructuregetAimedQuayRef()Gets the value of the aimedQuayRef property.voidsetAimedQuayRef(QuayRefStructure value)Sets the value of the aimedQuayRef property.
-
-
-
Field Detail
-
aimedQuayRef
protected QuayRefStructure aimedQuayRef
-
aimedQuayNames
protected List<NaturalLanguageStringStructure> aimedQuayNames
-
-
Method Detail
-
getAimedQuayRef
public QuayRefStructure getAimedQuayRef()
Gets the value of the aimedQuayRef property.- Returns:
- possible object is
QuayRefStructure
-
setAimedQuayRef
public void setAimedQuayRef(QuayRefStructure value)
Sets the value of the aimedQuayRef property.- Parameters:
value- allowed object isQuayRefStructure
-
getAimedQuayNames
public List<NaturalLanguageStringStructure> getAimedQuayNames()
Gets the value of the aimedQuayNames 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 aimedQuayNames property.For example, to add a new item, do as follows:
getAimedQuayNames().add(newItem);Objects of the following type(s) are allowed in the list
NaturalLanguageStringStructure
-
-