All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.org.siri.siri21.PreviousCallStructure Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2025.01.07 at 02:19:41 PM UTC 
//


package uk.org.siri.siri21;

import java.io.Serializable;
import java.time.ZonedDateTime;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter1;


/**
 * Type for CALL at previous stop.
 * 
 * 

Java class for PreviousCallStructure complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PreviousCallStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}AbstractMonitoredCallStructure">
 *       <sequence>
 *         <element ref="{http://www.siri.org.uk/siri}VehicleAtStop" minOccurs="0"/>
 *         <group ref="{http://www.siri.org.uk/siri}VehicleArrivalTimesGroup"/>
 *         <group ref="{http://www.siri.org.uk/siri}VehicleDepartureTimesGroup"/>
 *         <element ref="{http://www.siri.org.uk/siri}RecordedDepartureOccupancy" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}RecordedDepartureCapacities" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PreviousCallStructure", propOrder = { "vehicleAtStop", "aimedArrivalTime", "expectedArrivalTime", "actualArrivalTime", "aimedDepartureTime", "expectedDepartureTime", "actualDepartureTime", "recordedDepartureOccupancies", "recordedDepartureCapacities", "extensions" }) public class PreviousCallStructure extends AbstractMonitoredCallStructure implements Serializable { @XmlElement(name = "VehicleAtStop", defaultValue = "false") protected Boolean vehicleAtStop; @XmlElement(name = "AimedArrivalTime", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime aimedArrivalTime; @XmlElement(name = "ExpectedArrivalTime", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime expectedArrivalTime; @XmlElement(name = "ActualArrivalTime", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime actualArrivalTime; @XmlElement(name = "AimedDepartureTime", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime aimedDepartureTime; @XmlElement(name = "ExpectedDepartureTime", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime expectedDepartureTime; @XmlElement(name = "ActualDepartureTime", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime actualDepartureTime; @XmlElement(name = "RecordedDepartureOccupancy") protected List recordedDepartureOccupancies; @XmlElement(name = "RecordedDepartureCapacities") protected List recordedDepartureCapacities; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the vehicleAtStop property. * * @return * possible object is * {@link Boolean } * */ public Boolean isVehicleAtStop() { return vehicleAtStop; } /** * Sets the value of the vehicleAtStop property. * * @param value * allowed object is * {@link Boolean } * */ public void setVehicleAtStop(Boolean value) { this.vehicleAtStop = value; } /** * Gets the value of the aimedArrivalTime property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getAimedArrivalTime() { return aimedArrivalTime; } /** * Sets the value of the aimedArrivalTime property. * * @param value * allowed object is * {@link String } * */ public void setAimedArrivalTime(ZonedDateTime value) { this.aimedArrivalTime = value; } /** * Gets the value of the expectedArrivalTime property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getExpectedArrivalTime() { return expectedArrivalTime; } /** * Sets the value of the expectedArrivalTime property. * * @param value * allowed object is * {@link String } * */ public void setExpectedArrivalTime(ZonedDateTime value) { this.expectedArrivalTime = value; } /** * Gets the value of the actualArrivalTime property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getActualArrivalTime() { return actualArrivalTime; } /** * Sets the value of the actualArrivalTime property. * * @param value * allowed object is * {@link String } * */ public void setActualArrivalTime(ZonedDateTime value) { this.actualArrivalTime = value; } /** * Gets the value of the aimedDepartureTime property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getAimedDepartureTime() { return aimedDepartureTime; } /** * Sets the value of the aimedDepartureTime property. * * @param value * allowed object is * {@link String } * */ public void setAimedDepartureTime(ZonedDateTime value) { this.aimedDepartureTime = value; } /** * Gets the value of the expectedDepartureTime property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getExpectedDepartureTime() { return expectedDepartureTime; } /** * Sets the value of the expectedDepartureTime property. * * @param value * allowed object is * {@link String } * */ public void setExpectedDepartureTime(ZonedDateTime value) { this.expectedDepartureTime = value; } /** * Gets the value of the actualDepartureTime property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getActualDepartureTime() { return actualDepartureTime; } /** * Sets the value of the actualDepartureTime property. * * @param value * allowed object is * {@link String } * */ public void setActualDepartureTime(ZonedDateTime value) { this.actualDepartureTime = value; } /** * Gets the value of the recordedDepartureOccupancies 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 set method for the recordedDepartureOccupancies property. * *

* For example, to add a new item, do as follows: *

     *    getRecordedDepartureOccupancies().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VehicleOccupancyStructure } * * */ public List getRecordedDepartureOccupancies() { if (recordedDepartureOccupancies == null) { recordedDepartureOccupancies = new ArrayList(); } return this.recordedDepartureOccupancies; } /** * Gets the value of the recordedDepartureCapacities 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 set method for the recordedDepartureCapacities property. * *

* For example, to add a new item, do as follows: *

     *    getRecordedDepartureCapacities().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PassengerCapacityStructure } * * */ public List getRecordedDepartureCapacities() { if (recordedDepartureCapacities == null) { recordedDepartureCapacities = new ArrayList(); } return this.recordedDepartureCapacities; } /** * Gets the value of the extensions property. * * @return * possible object is * {@link Extensions } * */ public Extensions getExtensions() { return extensions; } /** * Sets the value of the extensions property. * * @param value * allowed object is * {@link Extensions } * */ public void setExtensions(Extensions value) { this.extensions = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy