
de.vdv.ojp20.siri.MonitoredCallStructure Maven / Gradle / Ivy
Show all versions of ojp-java-model Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package de.vdv.ojp20.siri;
import java.math.BigInteger;
import java.time.Duration;
import java.util.ArrayList;
import java.util.Collection;
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.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
import org.opentripplanner.ojp.time.XmlDateTime;
import org.opentripplanner.ojp.util.DurationXmlAdapter;
import org.opentripplanner.ojp.util.XmlDateTimeAdapter;
/**
* Java class for MonitoredCallStructure complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MonitoredCallStructure", propOrder = {
"vehicleAtStop",
"vehicleLocationAtStop",
"reversesAtStop",
"platformTraversal",
"signalStatus",
"timingPoint",
"boardingStretch",
"requestStop",
"originDisplay",
"destinationDisplay",
"callNote",
"formationCondition",
"facilityConditionElement",
"facilityChangeElement",
"situationRef",
"aimedArrivalTime",
"actualArrivalTime",
"expectedArrivalTime",
"latestExpectedArrivalTime",
"arrivalStatus",
"arrivalCancellationReason",
"arrivalProximityText",
"arrivalPlatformName",
"arrivalBoardingActivity",
"arrivalStopAssignment",
"arrivalFormationAssignment",
"arrivalOrientationRelativeToQuay",
"arrivalOperatorRefs",
"aimedDepartureTime",
"actualDepartureTime",
"expectedDepartureTime",
"provisionalExpectedDepartureTime",
"earliestExpectedDepartureTime",
"expectedDeparturePredictionQuality",
"aimedLatestPassengerAccessTime",
"expectedLatestPassengerAccessTime",
"departureStatus",
"departureCancellationReason",
"departureProximityText",
"departurePlatformName",
"departureBoardingActivity",
"departureStopAssignment",
"departureFormationAssignment",
"departureOrientationRelativeToQuay",
"expectedDepartureOccupancy",
"expectedDepartureCapacities",
"recordedDepartureOccupancy",
"recordedDepartureCapacities",
"departureOperatorRefs",
"aimedHeadwayInterval",
"expectedHeadwayInterval",
"distanceFromStop",
"numberOfStopsAway",
"extensions"
})
public class MonitoredCallStructure
extends AbstractMonitoredCallStructure
{
@XmlElement(name = "VehicleAtStop", defaultValue = "false")
protected Boolean vehicleAtStop;
@XmlElement(name = "VehicleLocationAtStop")
protected LocationStructure vehicleLocationAtStop;
@XmlElement(name = "ReversesAtStop", defaultValue = "false")
protected Boolean reversesAtStop;
@XmlElement(name = "PlatformTraversal", defaultValue = "false")
protected Boolean platformTraversal;
@XmlElement(name = "SignalStatus")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String signalStatus;
@XmlElement(name = "TimingPoint", defaultValue = "true")
protected Boolean timingPoint;
@XmlElement(name = "BoardingStretch", defaultValue = "false")
protected Boolean boardingStretch;
@XmlElement(name = "RequestStop", defaultValue = "false")
protected Boolean requestStop;
@XmlElement(name = "OriginDisplay")
protected List originDisplay;
@XmlElement(name = "DestinationDisplay")
protected List destinationDisplay;
@XmlElement(name = "CallNote")
protected List callNote;
@XmlElement(name = "FormationCondition")
protected List formationCondition;
@XmlElement(name = "FacilityConditionElement")
protected List facilityConditionElement;
@XmlElement(name = "FacilityChangeElement")
protected FacilityChangeStructure facilityChangeElement;
@XmlElement(name = "SituationRef")
protected List situationRef;
@XmlElement(name = "AimedArrivalTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime aimedArrivalTime;
@XmlElement(name = "ActualArrivalTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime actualArrivalTime;
@XmlElement(name = "ExpectedArrivalTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime expectedArrivalTime;
@XmlElement(name = "LatestExpectedArrivalTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime latestExpectedArrivalTime;
@XmlElement(name = "ArrivalStatus")
@XmlSchemaType(name = "NMTOKEN")
protected CallStatusEnumeration arrivalStatus;
@XmlElement(name = "ArrivalCancellationReason")
protected NaturalLanguageStringStructure arrivalCancellationReason;
@XmlElement(name = "ArrivalProximityText")
protected NaturalLanguageStringStructure arrivalProximityText;
@XmlElement(name = "ArrivalPlatformName")
protected NaturalLanguageStringStructure arrivalPlatformName;
@XmlElement(name = "ArrivalBoardingActivity", defaultValue = "alighting")
@XmlSchemaType(name = "NMTOKEN")
protected ArrivalBoardingActivityEnumeration arrivalBoardingActivity;
@XmlElement(name = "ArrivalStopAssignment")
protected List arrivalStopAssignment;
@XmlElement(name = "ArrivalFormationAssignment")
protected List arrivalFormationAssignment;
@XmlElement(name = "ArrivalOrientationRelativeToQuay")
protected List arrivalOrientationRelativeToQuay;
@XmlElement(name = "ArrivalOperatorRefs")
protected List arrivalOperatorRefs;
@XmlElement(name = "AimedDepartureTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime aimedDepartureTime;
@XmlElement(name = "ActualDepartureTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime actualDepartureTime;
@XmlElement(name = "ExpectedDepartureTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime expectedDepartureTime;
@XmlElement(name = "ProvisionalExpectedDepartureTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime provisionalExpectedDepartureTime;
@XmlElement(name = "EarliestExpectedDepartureTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime earliestExpectedDepartureTime;
@XmlElement(name = "ExpectedDeparturePredictionQuality")
protected PredictionQualityStructure expectedDeparturePredictionQuality;
@XmlElement(name = "AimedLatestPassengerAccessTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime aimedLatestPassengerAccessTime;
@XmlElement(name = "ExpectedLatestPassengerAccessTime", type = String.class)
@XmlJavaTypeAdapter(XmlDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XmlDateTime expectedLatestPassengerAccessTime;
@XmlElement(name = "DepartureStatus")
@XmlSchemaType(name = "NMTOKEN")
protected CallStatusEnumeration departureStatus;
@XmlElement(name = "DepartureCancellationReason")
protected NaturalLanguageStringStructure departureCancellationReason;
@XmlElement(name = "DepartureProximityText")
protected NaturalLanguageStringStructure departureProximityText;
@XmlElement(name = "DeparturePlatformName")
protected NaturalLanguageStringStructure departurePlatformName;
@XmlElement(name = "DepartureBoardingActivity", defaultValue = "boarding")
@XmlSchemaType(name = "NMTOKEN")
protected DepartureBoardingActivityEnumeration departureBoardingActivity;
@XmlElement(name = "DepartureStopAssignment")
protected List departureStopAssignment;
@XmlElement(name = "DepartureFormationAssignment")
protected List departureFormationAssignment;
@XmlElement(name = "DepartureOrientationRelativeToQuay")
protected List departureOrientationRelativeToQuay;
@XmlElement(name = "ExpectedDepartureOccupancy")
protected List expectedDepartureOccupancy;
@XmlElement(name = "ExpectedDepartureCapacities")
protected List expectedDepartureCapacities;
@XmlElement(name = "RecordedDepartureOccupancy")
protected List recordedDepartureOccupancy;
@XmlElement(name = "RecordedDepartureCapacities")
protected List recordedDepartureCapacities;
@XmlElement(name = "DepartureOperatorRefs")
protected List departureOperatorRefs;
@XmlElement(name = "AimedHeadwayInterval", type = String.class)
@XmlJavaTypeAdapter(DurationXmlAdapter.class)
@XmlSchemaType(name = "duration")
protected Duration aimedHeadwayInterval;
@XmlElement(name = "ExpectedHeadwayInterval", type = String.class)
@XmlJavaTypeAdapter(DurationXmlAdapter.class)
@XmlSchemaType(name = "duration")
protected Duration expectedHeadwayInterval;
@XmlElement(name = "DistanceFromStop")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger distanceFromStop;
@XmlElement(name = "NumberOfStopsAway")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger numberOfStopsAway;
@XmlElement(name = "Extensions")
protected ExtensionsStructure 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 vehicleLocationAtStop property.
*
* @return
* possible object is
* {@link LocationStructure }
*
*/
public LocationStructure getVehicleLocationAtStop() {
return vehicleLocationAtStop;
}
/**
* Sets the value of the vehicleLocationAtStop property.
*
* @param value
* allowed object is
* {@link LocationStructure }
*
*/
public void setVehicleLocationAtStop(LocationStructure value) {
this.vehicleLocationAtStop = value;
}
/**
* Gets the value of the reversesAtStop property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isReversesAtStop() {
return reversesAtStop;
}
/**
* Sets the value of the reversesAtStop property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setReversesAtStop(Boolean value) {
this.reversesAtStop = value;
}
/**
* Gets the value of the platformTraversal property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPlatformTraversal() {
return platformTraversal;
}
/**
* Sets the value of the platformTraversal property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPlatformTraversal(Boolean value) {
this.platformTraversal = value;
}
/**
* Gets the value of the signalStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSignalStatus() {
return signalStatus;
}
/**
* Sets the value of the signalStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSignalStatus(String value) {
this.signalStatus = value;
}
/**
* Gets the value of the timingPoint property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isTimingPoint() {
return timingPoint;
}
/**
* Sets the value of the timingPoint property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTimingPoint(Boolean value) {
this.timingPoint = value;
}
/**
* Gets the value of the boardingStretch property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isBoardingStretch() {
return boardingStretch;
}
/**
* Sets the value of the boardingStretch property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setBoardingStretch(Boolean value) {
this.boardingStretch = value;
}
/**
* Gets the value of the requestStop property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRequestStop() {
return requestStop;
}
/**
* Sets the value of the requestStop property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRequestStop(Boolean value) {
this.requestStop = value;
}
/**
* Gets the value of the originDisplay 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 set
method for the originDisplay property.
*
*
* For example, to add a new item, do as follows:
*
*
* getOriginDisplay().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*
* @return
* The value of the originDisplay property.
*/
public List getOriginDisplay() {
if (originDisplay == null) {
originDisplay = new ArrayList<>();
}
return this.originDisplay;
}
/**
* Gets the value of the destinationDisplay 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 set
method for the destinationDisplay property.
*
*
* For example, to add a new item, do as follows:
*
*
* getDestinationDisplay().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*
* @return
* The value of the destinationDisplay property.
*/
public List getDestinationDisplay() {
if (destinationDisplay == null) {
destinationDisplay = new ArrayList<>();
}
return this.destinationDisplay;
}
/**
* Gets the value of the callNote 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 set
method for the callNote property.
*
*
* For example, to add a new item, do as follows:
*
*
* getCallNote().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*
* @return
* The value of the callNote property.
*/
public List getCallNote() {
if (callNote == null) {
callNote = new ArrayList<>();
}
return this.callNote;
}
/**
* Gets the value of the formationCondition 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 set
method for the formationCondition property.
*
*
* For example, to add a new item, do as follows:
*
*
* getFormationCondition().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FormationConditionStructure }
*
*
*
* @return
* The value of the formationCondition property.
*/
public List getFormationCondition() {
if (formationCondition == null) {
formationCondition = new ArrayList<>();
}
return this.formationCondition;
}
/**
* Gets the value of the facilityConditionElement 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 set
method for the facilityConditionElement property.
*
*
* For example, to add a new item, do as follows:
*
*
* getFacilityConditionElement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FacilityConditionStructure }
*
*
*
* @return
* The value of the facilityConditionElement property.
*/
public List getFacilityConditionElement() {
if (facilityConditionElement == null) {
facilityConditionElement = new ArrayList<>();
}
return this.facilityConditionElement;
}
/**
* Gets the value of the facilityChangeElement property.
*
* @return
* possible object is
* {@link FacilityChangeStructure }
*
*/
public FacilityChangeStructure getFacilityChangeElement() {
return facilityChangeElement;
}
/**
* Sets the value of the facilityChangeElement property.
*
* @param value
* allowed object is
* {@link FacilityChangeStructure }
*
*/
public void setFacilityChangeElement(FacilityChangeStructure value) {
this.facilityChangeElement = value;
}
/**
* Gets the value of the situationRef 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 set
method for the situationRef property.
*
*
* For example, to add a new item, do as follows:
*
*
* getSituationRef().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SituationRefStructure }
*
*
*
* @return
* The value of the situationRef property.
*/
public List getSituationRef() {
if (situationRef == null) {
situationRef = new ArrayList<>();
}
return this.situationRef;
}
/**
* Gets the value of the aimedArrivalTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getAimedArrivalTime() {
return aimedArrivalTime;
}
/**
* Sets the value of the aimedArrivalTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAimedArrivalTime(XmlDateTime value) {
this.aimedArrivalTime = value;
}
/**
* Gets the value of the actualArrivalTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getActualArrivalTime() {
return actualArrivalTime;
}
/**
* Sets the value of the actualArrivalTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActualArrivalTime(XmlDateTime value) {
this.actualArrivalTime = value;
}
/**
* Gets the value of the expectedArrivalTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getExpectedArrivalTime() {
return expectedArrivalTime;
}
/**
* Sets the value of the expectedArrivalTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpectedArrivalTime(XmlDateTime value) {
this.expectedArrivalTime = value;
}
/**
* Gets the value of the latestExpectedArrivalTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getLatestExpectedArrivalTime() {
return latestExpectedArrivalTime;
}
/**
* Sets the value of the latestExpectedArrivalTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLatestExpectedArrivalTime(XmlDateTime value) {
this.latestExpectedArrivalTime = value;
}
/**
* Gets the value of the arrivalStatus property.
*
* @return
* possible object is
* {@link CallStatusEnumeration }
*
*/
public CallStatusEnumeration getArrivalStatus() {
return arrivalStatus;
}
/**
* Sets the value of the arrivalStatus property.
*
* @param value
* allowed object is
* {@link CallStatusEnumeration }
*
*/
public void setArrivalStatus(CallStatusEnumeration value) {
this.arrivalStatus = value;
}
/**
* Gets the value of the arrivalCancellationReason property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getArrivalCancellationReason() {
return arrivalCancellationReason;
}
/**
* Sets the value of the arrivalCancellationReason property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setArrivalCancellationReason(NaturalLanguageStringStructure value) {
this.arrivalCancellationReason = value;
}
/**
* Gets the value of the arrivalProximityText property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getArrivalProximityText() {
return arrivalProximityText;
}
/**
* Sets the value of the arrivalProximityText property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setArrivalProximityText(NaturalLanguageStringStructure value) {
this.arrivalProximityText = value;
}
/**
* Gets the value of the arrivalPlatformName property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getArrivalPlatformName() {
return arrivalPlatformName;
}
/**
* Sets the value of the arrivalPlatformName property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setArrivalPlatformName(NaturalLanguageStringStructure value) {
this.arrivalPlatformName = value;
}
/**
* Gets the value of the arrivalBoardingActivity property.
*
* @return
* possible object is
* {@link ArrivalBoardingActivityEnumeration }
*
*/
public ArrivalBoardingActivityEnumeration getArrivalBoardingActivity() {
return arrivalBoardingActivity;
}
/**
* Sets the value of the arrivalBoardingActivity property.
*
* @param value
* allowed object is
* {@link ArrivalBoardingActivityEnumeration }
*
*/
public void setArrivalBoardingActivity(ArrivalBoardingActivityEnumeration value) {
this.arrivalBoardingActivity = value;
}
/**
* Gets the value of the arrivalStopAssignment 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 set
method for the arrivalStopAssignment property.
*
*
* For example, to add a new item, do as follows:
*
*
* getArrivalStopAssignment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StopAssignmentStructure }
*
*
*
* @return
* The value of the arrivalStopAssignment property.
*/
public List getArrivalStopAssignment() {
if (arrivalStopAssignment == null) {
arrivalStopAssignment = new ArrayList<>();
}
return this.arrivalStopAssignment;
}
/**
* Gets the value of the arrivalFormationAssignment 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 set
method for the arrivalFormationAssignment property.
*
*
* For example, to add a new item, do as follows:
*
*
* getArrivalFormationAssignment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FormationAssignmentStructure }
*
*
*
* @return
* The value of the arrivalFormationAssignment property.
*/
public List getArrivalFormationAssignment() {
if (arrivalFormationAssignment == null) {
arrivalFormationAssignment = new ArrayList<>();
}
return this.arrivalFormationAssignment;
}
/**
* Gets the value of the arrivalOrientationRelativeToQuay 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 set
method for the arrivalOrientationRelativeToQuay property.
*
*
* For example, to add a new item, do as follows:
*
*
* getArrivalOrientationRelativeToQuay().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VehicleOrientationRelativeToQuay }
*
*
*
* @return
* The value of the arrivalOrientationRelativeToQuay property.
*/
public List getArrivalOrientationRelativeToQuay() {
if (arrivalOrientationRelativeToQuay == null) {
arrivalOrientationRelativeToQuay = new ArrayList<>();
}
return this.arrivalOrientationRelativeToQuay;
}
/**
* Gets the value of the arrivalOperatorRefs 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 set
method for the arrivalOperatorRefs property.
*
*
* For example, to add a new item, do as follows:
*
*
* getArrivalOperatorRefs().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OperatorRefStructure }
*
*
*
* @return
* The value of the arrivalOperatorRefs property.
*/
public List getArrivalOperatorRefs() {
if (arrivalOperatorRefs == null) {
arrivalOperatorRefs = new ArrayList<>();
}
return this.arrivalOperatorRefs;
}
/**
* Gets the value of the aimedDepartureTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getAimedDepartureTime() {
return aimedDepartureTime;
}
/**
* Sets the value of the aimedDepartureTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAimedDepartureTime(XmlDateTime value) {
this.aimedDepartureTime = value;
}
/**
* Gets the value of the actualDepartureTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getActualDepartureTime() {
return actualDepartureTime;
}
/**
* Sets the value of the actualDepartureTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActualDepartureTime(XmlDateTime value) {
this.actualDepartureTime = value;
}
/**
* Gets the value of the expectedDepartureTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getExpectedDepartureTime() {
return expectedDepartureTime;
}
/**
* Sets the value of the expectedDepartureTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpectedDepartureTime(XmlDateTime value) {
this.expectedDepartureTime = value;
}
/**
* Gets the value of the provisionalExpectedDepartureTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getProvisionalExpectedDepartureTime() {
return provisionalExpectedDepartureTime;
}
/**
* Sets the value of the provisionalExpectedDepartureTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProvisionalExpectedDepartureTime(XmlDateTime value) {
this.provisionalExpectedDepartureTime = value;
}
/**
* Gets the value of the earliestExpectedDepartureTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getEarliestExpectedDepartureTime() {
return earliestExpectedDepartureTime;
}
/**
* Sets the value of the earliestExpectedDepartureTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEarliestExpectedDepartureTime(XmlDateTime value) {
this.earliestExpectedDepartureTime = value;
}
/**
* Gets the value of the expectedDeparturePredictionQuality property.
*
* @return
* possible object is
* {@link PredictionQualityStructure }
*
*/
public PredictionQualityStructure getExpectedDeparturePredictionQuality() {
return expectedDeparturePredictionQuality;
}
/**
* Sets the value of the expectedDeparturePredictionQuality property.
*
* @param value
* allowed object is
* {@link PredictionQualityStructure }
*
*/
public void setExpectedDeparturePredictionQuality(PredictionQualityStructure value) {
this.expectedDeparturePredictionQuality = value;
}
/**
* Gets the value of the aimedLatestPassengerAccessTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getAimedLatestPassengerAccessTime() {
return aimedLatestPassengerAccessTime;
}
/**
* Sets the value of the aimedLatestPassengerAccessTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAimedLatestPassengerAccessTime(XmlDateTime value) {
this.aimedLatestPassengerAccessTime = value;
}
/**
* Gets the value of the expectedLatestPassengerAccessTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public XmlDateTime getExpectedLatestPassengerAccessTime() {
return expectedLatestPassengerAccessTime;
}
/**
* Sets the value of the expectedLatestPassengerAccessTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpectedLatestPassengerAccessTime(XmlDateTime value) {
this.expectedLatestPassengerAccessTime = value;
}
/**
* Gets the value of the departureStatus property.
*
* @return
* possible object is
* {@link CallStatusEnumeration }
*
*/
public CallStatusEnumeration getDepartureStatus() {
return departureStatus;
}
/**
* Sets the value of the departureStatus property.
*
* @param value
* allowed object is
* {@link CallStatusEnumeration }
*
*/
public void setDepartureStatus(CallStatusEnumeration value) {
this.departureStatus = value;
}
/**
* Gets the value of the departureCancellationReason property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getDepartureCancellationReason() {
return departureCancellationReason;
}
/**
* Sets the value of the departureCancellationReason property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setDepartureCancellationReason(NaturalLanguageStringStructure value) {
this.departureCancellationReason = value;
}
/**
* Gets the value of the departureProximityText property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getDepartureProximityText() {
return departureProximityText;
}
/**
* Sets the value of the departureProximityText property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setDepartureProximityText(NaturalLanguageStringStructure value) {
this.departureProximityText = value;
}
/**
* Gets the value of the departurePlatformName property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getDeparturePlatformName() {
return departurePlatformName;
}
/**
* Sets the value of the departurePlatformName property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setDeparturePlatformName(NaturalLanguageStringStructure value) {
this.departurePlatformName = value;
}
/**
* Gets the value of the departureBoardingActivity property.
*
* @return
* possible object is
* {@link DepartureBoardingActivityEnumeration }
*
*/
public DepartureBoardingActivityEnumeration getDepartureBoardingActivity() {
return departureBoardingActivity;
}
/**
* Sets the value of the departureBoardingActivity property.
*
* @param value
* allowed object is
* {@link DepartureBoardingActivityEnumeration }
*
*/
public void setDepartureBoardingActivity(DepartureBoardingActivityEnumeration value) {
this.departureBoardingActivity = value;
}
/**
* Gets the value of the departureStopAssignment 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 set
method for the departureStopAssignment property.
*
*
* For example, to add a new item, do as follows:
*
*
* getDepartureStopAssignment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StopAssignmentStructure }
*
*
*
* @return
* The value of the departureStopAssignment property.
*/
public List getDepartureStopAssignment() {
if (departureStopAssignment == null) {
departureStopAssignment = new ArrayList<>();
}
return this.departureStopAssignment;
}
/**
* Gets the value of the departureFormationAssignment 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 set
method for the departureFormationAssignment property.
*
*
* For example, to add a new item, do as follows:
*
*
* getDepartureFormationAssignment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FormationAssignmentStructure }
*
*
*
* @return
* The value of the departureFormationAssignment property.
*/
public List getDepartureFormationAssignment() {
if (departureFormationAssignment == null) {
departureFormationAssignment = new ArrayList<>();
}
return this.departureFormationAssignment;
}
/**
* Gets the value of the departureOrientationRelativeToQuay 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 set
method for the departureOrientationRelativeToQuay property.
*
*
* For example, to add a new item, do as follows:
*
*
* getDepartureOrientationRelativeToQuay().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VehicleOrientationRelativeToQuay }
*
*
*
* @return
* The value of the departureOrientationRelativeToQuay property.
*/
public List getDepartureOrientationRelativeToQuay() {
if (departureOrientationRelativeToQuay == null) {
departureOrientationRelativeToQuay = new ArrayList<>();
}
return this.departureOrientationRelativeToQuay;
}
/**
* Gets the value of the expectedDepartureOccupancy 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 set
method for the expectedDepartureOccupancy property.
*
*
* For example, to add a new item, do as follows:
*
*
* getExpectedDepartureOccupancy().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VehicleOccupancyStructure }
*
*
*
* @return
* The value of the expectedDepartureOccupancy property.
*/
public List getExpectedDepartureOccupancy() {
if (expectedDepartureOccupancy == null) {
expectedDepartureOccupancy = new ArrayList<>();
}
return this.expectedDepartureOccupancy;
}
/**
* Gets the value of the expectedDepartureCapacities 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 set
method for the expectedDepartureCapacities property.
*
*
* For example, to add a new item, do as follows:
*
*
* getExpectedDepartureCapacities().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PassengerCapacityStructure }
*
*
*
* @return
* The value of the expectedDepartureCapacities property.
*/
public List getExpectedDepartureCapacities() {
if (expectedDepartureCapacities == null) {
expectedDepartureCapacities = new ArrayList<>();
}
return this.expectedDepartureCapacities;
}
/**
* Gets the value of the recordedDepartureOccupancy 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 set
method for the recordedDepartureOccupancy property.
*
*
* For example, to add a new item, do as follows:
*
*
* getRecordedDepartureOccupancy().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VehicleOccupancyStructure }
*
*
*
* @return
* The value of the recordedDepartureOccupancy property.
*/
public List getRecordedDepartureOccupancy() {
if (recordedDepartureOccupancy == null) {
recordedDepartureOccupancy = new ArrayList<>();
}
return this.recordedDepartureOccupancy;
}
/**
* 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 JAXB 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 }
*
*
*
* @return
* The value of the recordedDepartureCapacities property.
*/
public List getRecordedDepartureCapacities() {
if (recordedDepartureCapacities == null) {
recordedDepartureCapacities = new ArrayList<>();
}
return this.recordedDepartureCapacities;
}
/**
* Gets the value of the departureOperatorRefs 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 set
method for the departureOperatorRefs property.
*
*
* For example, to add a new item, do as follows:
*
*
* getDepartureOperatorRefs().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OperatorRefStructure }
*
*
*
* @return
* The value of the departureOperatorRefs property.
*/
public List getDepartureOperatorRefs() {
if (departureOperatorRefs == null) {
departureOperatorRefs = new ArrayList<>();
}
return this.departureOperatorRefs;
}
/**
* Gets the value of the aimedHeadwayInterval property.
*
* @return
* possible object is
* {@link String }
*
*/
public Duration getAimedHeadwayInterval() {
return aimedHeadwayInterval;
}
/**
* Sets the value of the aimedHeadwayInterval property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAimedHeadwayInterval(Duration value) {
this.aimedHeadwayInterval = value;
}
/**
* Gets the value of the expectedHeadwayInterval property.
*
* @return
* possible object is
* {@link String }
*
*/
public Duration getExpectedHeadwayInterval() {
return expectedHeadwayInterval;
}
/**
* Sets the value of the expectedHeadwayInterval property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpectedHeadwayInterval(Duration value) {
this.expectedHeadwayInterval = value;
}
/**
* Gets the value of the distanceFromStop property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getDistanceFromStop() {
return distanceFromStop;
}
/**
* Sets the value of the distanceFromStop property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setDistanceFromStop(BigInteger value) {
this.distanceFromStop = value;
}
/**
* Gets the value of the numberOfStopsAway property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNumberOfStopsAway() {
return numberOfStopsAway;
}
/**
* Sets the value of the numberOfStopsAway property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNumberOfStopsAway(BigInteger value) {
this.numberOfStopsAway = value;
}
/**
* Gets the value of the extensions property.
*
* @return
* possible object is
* {@link ExtensionsStructure }
*
*/
public ExtensionsStructure getExtensions() {
return extensions;
}
/**
* Sets the value of the extensions property.
*
* @param value
* allowed object is
* {@link ExtensionsStructure }
*
*/
public void setExtensions(ExtensionsStructure value) {
this.extensions = value;
}
public MonitoredCallStructure withVehicleAtStop(Boolean value) {
setVehicleAtStop(value);
return this;
}
public MonitoredCallStructure withVehicleLocationAtStop(LocationStructure value) {
setVehicleLocationAtStop(value);
return this;
}
public MonitoredCallStructure withReversesAtStop(Boolean value) {
setReversesAtStop(value);
return this;
}
public MonitoredCallStructure withPlatformTraversal(Boolean value) {
setPlatformTraversal(value);
return this;
}
public MonitoredCallStructure withSignalStatus(String value) {
setSignalStatus(value);
return this;
}
public MonitoredCallStructure withTimingPoint(Boolean value) {
setTimingPoint(value);
return this;
}
public MonitoredCallStructure withBoardingStretch(Boolean value) {
setBoardingStretch(value);
return this;
}
public MonitoredCallStructure withRequestStop(Boolean value) {
setRequestStop(value);
return this;
}
public MonitoredCallStructure withOriginDisplay(NaturalLanguageStringStructure... values) {
if (values!= null) {
for (NaturalLanguageStringStructure value: values) {
getOriginDisplay().add(value);
}
}
return this;
}
public MonitoredCallStructure withOriginDisplay(Collection values) {
if (values!= null) {
getOriginDisplay().addAll(values);
}
return this;
}
public MonitoredCallStructure withDestinationDisplay(NaturalLanguageStringStructure... values) {
if (values!= null) {
for (NaturalLanguageStringStructure value: values) {
getDestinationDisplay().add(value);
}
}
return this;
}
public MonitoredCallStructure withDestinationDisplay(Collection values) {
if (values!= null) {
getDestinationDisplay().addAll(values);
}
return this;
}
public MonitoredCallStructure withCallNote(NaturalLanguageStringStructure... values) {
if (values!= null) {
for (NaturalLanguageStringStructure value: values) {
getCallNote().add(value);
}
}
return this;
}
public MonitoredCallStructure withCallNote(Collection values) {
if (values!= null) {
getCallNote().addAll(values);
}
return this;
}
public MonitoredCallStructure withFormationCondition(FormationConditionStructure... values) {
if (values!= null) {
for (FormationConditionStructure value: values) {
getFormationCondition().add(value);
}
}
return this;
}
public MonitoredCallStructure withFormationCondition(Collection values) {
if (values!= null) {
getFormationCondition().addAll(values);
}
return this;
}
public MonitoredCallStructure withFacilityConditionElement(FacilityConditionStructure... values) {
if (values!= null) {
for (FacilityConditionStructure value: values) {
getFacilityConditionElement().add(value);
}
}
return this;
}
public MonitoredCallStructure withFacilityConditionElement(Collection values) {
if (values!= null) {
getFacilityConditionElement().addAll(values);
}
return this;
}
public MonitoredCallStructure withFacilityChangeElement(FacilityChangeStructure value) {
setFacilityChangeElement(value);
return this;
}
public MonitoredCallStructure withSituationRef(SituationRefStructure... values) {
if (values!= null) {
for (SituationRefStructure value: values) {
getSituationRef().add(value);
}
}
return this;
}
public MonitoredCallStructure withSituationRef(Collection values) {
if (values!= null) {
getSituationRef().addAll(values);
}
return this;
}
public MonitoredCallStructure withAimedArrivalTime(XmlDateTime value) {
setAimedArrivalTime(value);
return this;
}
public MonitoredCallStructure withActualArrivalTime(XmlDateTime value) {
setActualArrivalTime(value);
return this;
}
public MonitoredCallStructure withExpectedArrivalTime(XmlDateTime value) {
setExpectedArrivalTime(value);
return this;
}
public MonitoredCallStructure withLatestExpectedArrivalTime(XmlDateTime value) {
setLatestExpectedArrivalTime(value);
return this;
}
public MonitoredCallStructure withArrivalStatus(CallStatusEnumeration value) {
setArrivalStatus(value);
return this;
}
public MonitoredCallStructure withArrivalCancellationReason(NaturalLanguageStringStructure value) {
setArrivalCancellationReason(value);
return this;
}
public MonitoredCallStructure withArrivalProximityText(NaturalLanguageStringStructure value) {
setArrivalProximityText(value);
return this;
}
public MonitoredCallStructure withArrivalPlatformName(NaturalLanguageStringStructure value) {
setArrivalPlatformName(value);
return this;
}
public MonitoredCallStructure withArrivalBoardingActivity(ArrivalBoardingActivityEnumeration value) {
setArrivalBoardingActivity(value);
return this;
}
public MonitoredCallStructure withArrivalStopAssignment(StopAssignmentStructure... values) {
if (values!= null) {
for (StopAssignmentStructure value: values) {
getArrivalStopAssignment().add(value);
}
}
return this;
}
public MonitoredCallStructure withArrivalStopAssignment(Collection values) {
if (values!= null) {
getArrivalStopAssignment().addAll(values);
}
return this;
}
public MonitoredCallStructure withArrivalFormationAssignment(FormationAssignmentStructure... values) {
if (values!= null) {
for (FormationAssignmentStructure value: values) {
getArrivalFormationAssignment().add(value);
}
}
return this;
}
public MonitoredCallStructure withArrivalFormationAssignment(Collection values) {
if (values!= null) {
getArrivalFormationAssignment().addAll(values);
}
return this;
}
public MonitoredCallStructure withArrivalOrientationRelativeToQuay(VehicleOrientationRelativeToQuay... values) {
if (values!= null) {
for (VehicleOrientationRelativeToQuay value: values) {
getArrivalOrientationRelativeToQuay().add(value);
}
}
return this;
}
public MonitoredCallStructure withArrivalOrientationRelativeToQuay(Collection values) {
if (values!= null) {
getArrivalOrientationRelativeToQuay().addAll(values);
}
return this;
}
public MonitoredCallStructure withArrivalOperatorRefs(OperatorRefStructure... values) {
if (values!= null) {
for (OperatorRefStructure value: values) {
getArrivalOperatorRefs().add(value);
}
}
return this;
}
public MonitoredCallStructure withArrivalOperatorRefs(Collection values) {
if (values!= null) {
getArrivalOperatorRefs().addAll(values);
}
return this;
}
public MonitoredCallStructure withAimedDepartureTime(XmlDateTime value) {
setAimedDepartureTime(value);
return this;
}
public MonitoredCallStructure withActualDepartureTime(XmlDateTime value) {
setActualDepartureTime(value);
return this;
}
public MonitoredCallStructure withExpectedDepartureTime(XmlDateTime value) {
setExpectedDepartureTime(value);
return this;
}
public MonitoredCallStructure withProvisionalExpectedDepartureTime(XmlDateTime value) {
setProvisionalExpectedDepartureTime(value);
return this;
}
public MonitoredCallStructure withEarliestExpectedDepartureTime(XmlDateTime value) {
setEarliestExpectedDepartureTime(value);
return this;
}
public MonitoredCallStructure withExpectedDeparturePredictionQuality(PredictionQualityStructure value) {
setExpectedDeparturePredictionQuality(value);
return this;
}
public MonitoredCallStructure withAimedLatestPassengerAccessTime(XmlDateTime value) {
setAimedLatestPassengerAccessTime(value);
return this;
}
public MonitoredCallStructure withExpectedLatestPassengerAccessTime(XmlDateTime value) {
setExpectedLatestPassengerAccessTime(value);
return this;
}
public MonitoredCallStructure withDepartureStatus(CallStatusEnumeration value) {
setDepartureStatus(value);
return this;
}
public MonitoredCallStructure withDepartureCancellationReason(NaturalLanguageStringStructure value) {
setDepartureCancellationReason(value);
return this;
}
public MonitoredCallStructure withDepartureProximityText(NaturalLanguageStringStructure value) {
setDepartureProximityText(value);
return this;
}
public MonitoredCallStructure withDeparturePlatformName(NaturalLanguageStringStructure value) {
setDeparturePlatformName(value);
return this;
}
public MonitoredCallStructure withDepartureBoardingActivity(DepartureBoardingActivityEnumeration value) {
setDepartureBoardingActivity(value);
return this;
}
public MonitoredCallStructure withDepartureStopAssignment(StopAssignmentStructure... values) {
if (values!= null) {
for (StopAssignmentStructure value: values) {
getDepartureStopAssignment().add(value);
}
}
return this;
}
public MonitoredCallStructure withDepartureStopAssignment(Collection values) {
if (values!= null) {
getDepartureStopAssignment().addAll(values);
}
return this;
}
public MonitoredCallStructure withDepartureFormationAssignment(FormationAssignmentStructure... values) {
if (values!= null) {
for (FormationAssignmentStructure value: values) {
getDepartureFormationAssignment().add(value);
}
}
return this;
}
public MonitoredCallStructure withDepartureFormationAssignment(Collection values) {
if (values!= null) {
getDepartureFormationAssignment().addAll(values);
}
return this;
}
public MonitoredCallStructure withDepartureOrientationRelativeToQuay(VehicleOrientationRelativeToQuay... values) {
if (values!= null) {
for (VehicleOrientationRelativeToQuay value: values) {
getDepartureOrientationRelativeToQuay().add(value);
}
}
return this;
}
public MonitoredCallStructure withDepartureOrientationRelativeToQuay(Collection values) {
if (values!= null) {
getDepartureOrientationRelativeToQuay().addAll(values);
}
return this;
}
public MonitoredCallStructure withExpectedDepartureOccupancy(VehicleOccupancyStructure... values) {
if (values!= null) {
for (VehicleOccupancyStructure value: values) {
getExpectedDepartureOccupancy().add(value);
}
}
return this;
}
public MonitoredCallStructure withExpectedDepartureOccupancy(Collection values) {
if (values!= null) {
getExpectedDepartureOccupancy().addAll(values);
}
return this;
}
public MonitoredCallStructure withExpectedDepartureCapacities(PassengerCapacityStructure... values) {
if (values!= null) {
for (PassengerCapacityStructure value: values) {
getExpectedDepartureCapacities().add(value);
}
}
return this;
}
public MonitoredCallStructure withExpectedDepartureCapacities(Collection values) {
if (values!= null) {
getExpectedDepartureCapacities().addAll(values);
}
return this;
}
public MonitoredCallStructure withRecordedDepartureOccupancy(VehicleOccupancyStructure... values) {
if (values!= null) {
for (VehicleOccupancyStructure value: values) {
getRecordedDepartureOccupancy().add(value);
}
}
return this;
}
public MonitoredCallStructure withRecordedDepartureOccupancy(Collection values) {
if (values!= null) {
getRecordedDepartureOccupancy().addAll(values);
}
return this;
}
public MonitoredCallStructure withRecordedDepartureCapacities(PassengerCapacityStructure... values) {
if (values!= null) {
for (PassengerCapacityStructure value: values) {
getRecordedDepartureCapacities().add(value);
}
}
return this;
}
public MonitoredCallStructure withRecordedDepartureCapacities(Collection values) {
if (values!= null) {
getRecordedDepartureCapacities().addAll(values);
}
return this;
}
public MonitoredCallStructure withDepartureOperatorRefs(OperatorRefStructure... values) {
if (values!= null) {
for (OperatorRefStructure value: values) {
getDepartureOperatorRefs().add(value);
}
}
return this;
}
public MonitoredCallStructure withDepartureOperatorRefs(Collection values) {
if (values!= null) {
getDepartureOperatorRefs().addAll(values);
}
return this;
}
public MonitoredCallStructure withAimedHeadwayInterval(Duration value) {
setAimedHeadwayInterval(value);
return this;
}
public MonitoredCallStructure withExpectedHeadwayInterval(Duration value) {
setExpectedHeadwayInterval(value);
return this;
}
public MonitoredCallStructure withDistanceFromStop(BigInteger value) {
setDistanceFromStop(value);
return this;
}
public MonitoredCallStructure withNumberOfStopsAway(BigInteger value) {
setNumberOfStopsAway(value);
return this;
}
public MonitoredCallStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public MonitoredCallStructure withStopPointRef(StopPointRefStructure value) {
setStopPointRef(value);
return this;
}
@Override
public MonitoredCallStructure withVisitNumber(BigInteger value) {
setVisitNumber(value);
return this;
}
@Override
public MonitoredCallStructure withOrder(BigInteger value) {
setOrder(value);
return this;
}
@Override
public MonitoredCallStructure withStopPointName(NaturalLanguageStringStructure... values) {
if (values!= null) {
for (NaturalLanguageStringStructure value: values) {
getStopPointName().add(value);
}
}
return this;
}
@Override
public MonitoredCallStructure withStopPointName(Collection values) {
if (values!= null) {
getStopPointName().addAll(values);
}
return this;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE);
}
}