Package uk.org.siri.siri10
Class AnnotatedStopPointStructure
- java.lang.Object
-
- uk.org.siri.siri10.AnnotatedStopPointStructure
-
- All Implemented Interfaces:
Serializable
public class AnnotatedStopPointStructure extends Object implements Serializable
Sumamry information about a stop.Java class for AnnotatedStopPointStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AnnotatedStopPointStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="StopPointRef" type="{http://www.siri.org.uk/}StopPointRefStructure"/> <element ref="{http://www.siri.org.uk/}TimingPoint" minOccurs="0"/> <element name="Monitored" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="StopName" type="{http://www.siri.org.uk/}NaturalLanguageStringStructure" minOccurs="0"/> <element name="Features" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="ServiceFeature" type="{http://www.siri.org.uk/}ServiceFeatureStructure" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.siri.org.uk/}ServiceFeatureRef" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="Lines" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="LineRef" type="{http://www.siri.org.uk/}LineRefStructure" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAnnotatedStopPointStructure.FeaturesJava class for anonymous complex type.static classAnnotatedStopPointStructure.LinesJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected AnnotatedStopPointStructure.Featuresfeaturesprotected List<AnnotatedStopPointStructure.Lines>linesprotected Booleanmonitoredprotected NaturalLanguageStringStructurestopNameprotected StopPointRefStructurestopPointRefprotected BooleantimingPoint
-
Constructor Summary
Constructors Constructor Description AnnotatedStopPointStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnnotatedStopPointStructure.FeaturesgetFeatures()Gets the value of the features property.List<AnnotatedStopPointStructure.Lines>getLines()Gets the value of the lines property.NaturalLanguageStringStructuregetStopName()Gets the value of the stopName property.StopPointRefStructuregetStopPointRef()Gets the value of the stopPointRef property.BooleanisMonitored()Gets the value of the monitored property.BooleanisTimingPoint()Gets the value of the timingPoint property.voidsetFeatures(AnnotatedStopPointStructure.Features value)Sets the value of the features property.voidsetMonitored(Boolean value)Sets the value of the monitored property.voidsetStopName(NaturalLanguageStringStructure value)Sets the value of the stopName property.voidsetStopPointRef(StopPointRefStructure value)Sets the value of the stopPointRef property.voidsetTimingPoint(Boolean value)Sets the value of the timingPoint property.
-
-
-
Field Detail
-
stopPointRef
protected StopPointRefStructure stopPointRef
-
timingPoint
protected Boolean timingPoint
-
monitored
protected Boolean monitored
-
stopName
protected NaturalLanguageStringStructure stopName
-
features
protected AnnotatedStopPointStructure.Features features
-
lines
protected List<AnnotatedStopPointStructure.Lines> lines
-
-
Method Detail
-
getStopPointRef
public StopPointRefStructure getStopPointRef()
Gets the value of the stopPointRef property.- Returns:
- possible object is
StopPointRefStructure
-
setStopPointRef
public void setStopPointRef(StopPointRefStructure value)
Sets the value of the stopPointRef property.- Parameters:
value- allowed object isStopPointRefStructure
-
isTimingPoint
public Boolean isTimingPoint()
Gets the value of the timingPoint property.- Returns:
- possible object is
Boolean
-
setTimingPoint
public void setTimingPoint(Boolean value)
Sets the value of the timingPoint property.- Parameters:
value- allowed object isBoolean
-
isMonitored
public Boolean isMonitored()
Gets the value of the monitored property.- Returns:
- possible object is
Boolean
-
setMonitored
public void setMonitored(Boolean value)
Sets the value of the monitored property.- Parameters:
value- allowed object isBoolean
-
getStopName
public NaturalLanguageStringStructure getStopName()
Gets the value of the stopName property.- Returns:
- possible object is
NaturalLanguageStringStructure
-
setStopName
public void setStopName(NaturalLanguageStringStructure value)
Sets the value of the stopName property.- Parameters:
value- allowed object isNaturalLanguageStringStructure
-
getFeatures
public AnnotatedStopPointStructure.Features getFeatures()
Gets the value of the features property.- Returns:
- possible object is
AnnotatedStopPointStructure.Features
-
setFeatures
public void setFeatures(AnnotatedStopPointStructure.Features value)
Sets the value of the features property.- Parameters:
value- allowed object isAnnotatedStopPointStructure.Features
-
getLines
public List<AnnotatedStopPointStructure.Lines> getLines()
Gets the value of the lines 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 lines property.For example, to add a new item, do as follows:
getLines().add(newItem);Objects of the following type(s) are allowed in the list
AnnotatedStopPointStructure.Lines
-
-