Package uk.org.siri.siri21
Class AbstractCallStructure
- java.lang.Object
-
- uk.org.siri.siri21.AbstractCallStructure
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
RelatedCallStructure
public class AbstractCallStructure extends Object implements Serializable
Type for Abstract CALL at stop.Java class for AbstractCallStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AbstractCallStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <group ref="{http://www.siri.org.uk/siri}StopPointInSequenceGroup"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected BigIntegerorderprotected List<NaturalLanguageStringStructure>stopPointNamesprotected StopPointRefStructurestopPointRefprotected BigIntegervisitNumber
-
Constructor Summary
Constructors Constructor Description AbstractCallStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetOrder()Gets the value of the order property.List<NaturalLanguageStringStructure>getStopPointNames()Name of SCHEDULED STOP POINT.StopPointRefStructuregetStopPointRef()Gets the value of the stopPointRef property.BigIntegergetVisitNumber()Gets the value of the visitNumber property.voidsetOrder(BigInteger value)Sets the value of the order property.voidsetStopPointRef(StopPointRefStructure value)Sets the value of the stopPointRef property.voidsetVisitNumber(BigInteger value)Sets the value of the visitNumber property.
-
-
-
Field Detail
-
stopPointRef
protected StopPointRefStructure stopPointRef
-
visitNumber
protected BigInteger visitNumber
-
order
protected BigInteger order
-
stopPointNames
protected List<NaturalLanguageStringStructure> stopPointNames
-
-
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
-
getVisitNumber
public BigInteger getVisitNumber()
Gets the value of the visitNumber property.- Returns:
- possible object is
BigInteger
-
setVisitNumber
public void setVisitNumber(BigInteger value)
Sets the value of the visitNumber property.- Parameters:
value- allowed object isBigInteger
-
getOrder
public BigInteger getOrder()
Gets the value of the order property.- Returns:
- possible object is
BigInteger
-
setOrder
public void setOrder(BigInteger value)
Sets the value of the order property.- Parameters:
value- allowed object isBigInteger
-
getStopPointNames
public List<NaturalLanguageStringStructure> getStopPointNames()
Name of SCHEDULED STOP POINT. (Unbounded since SIRI 2.0) Gets the value of the stopPointNames 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 stopPointNames property.For example, to add a new item, do as follows:
getStopPointNames().add(newItem);Objects of the following type(s) are allowed in the list
NaturalLanguageStringStructure
-
-