Package uk.org.siri.siri10
Class EstimatedVersionFrameStructure
- java.lang.Object
-
- uk.org.siri.siri10.AbstractItemStructure
-
- uk.org.siri.siri10.EstimatedVersionFrameStructure
-
- All Implemented Interfaces:
Serializable
public class EstimatedVersionFrameStructure extends AbstractItemStructure implements Serializable
Type for version frame strcuture.Java class for EstimatedVersionFrameStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EstimatedVersionFrameStructure"> <complexContent> <extension base="{http://www.siri.org.uk/}AbstractItemStructure"> <sequence> <element ref="{http://www.siri.org.uk/}VersionRef" minOccurs="0"/> <element ref="{http://www.siri.org.uk/}EstimatedVehicleJourney" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<EstimatedVehicleJourneyStructure>estimatedVehicleJourneyprotected StringversionRef-
Fields inherited from class uk.org.siri.siri10.AbstractItemStructure
recordedAtTime
-
-
Constructor Summary
Constructors Constructor Description EstimatedVersionFrameStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EstimatedVehicleJourneyStructure>getEstimatedVehicleJourney()Gets the value of the estimatedVehicleJourney property.StringgetVersionRef()Gets the value of the versionRef property.voidsetVersionRef(String value)Sets the value of the versionRef property.-
Methods inherited from class uk.org.siri.siri10.AbstractItemStructure
getRecordedAtTime, setRecordedAtTime
-
-
-
-
Field Detail
-
versionRef
protected String versionRef
-
estimatedVehicleJourney
protected List<EstimatedVehicleJourneyStructure> estimatedVehicleJourney
-
-
Method Detail
-
getVersionRef
public String getVersionRef()
Gets the value of the versionRef property.- Returns:
- possible object is
String
-
setVersionRef
public void setVersionRef(String value)
Sets the value of the versionRef property.- Parameters:
value- allowed object isString
-
getEstimatedVehicleJourney
public List<EstimatedVehicleJourneyStructure> getEstimatedVehicleJourney()
Gets the value of the estimatedVehicleJourney 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 estimatedVehicleJourney property.For example, to add a new item, do as follows:
getEstimatedVehicleJourney().add(newItem);Objects of the following type(s) are allowed in the list
EstimatedVehicleJourneyStructure
-
-