
de.vdv.ojp20.siri.FormationConditionStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojp-java-model Show documentation
Show all versions of ojp-java-model Show documentation
Generates Java model from OJP xsds using jaxb.
The newest version!
//
// 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
/**
* Java class for FormationConditionStructure complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FormationConditionStructure", propOrder = {
"compoundTrainRef",
"trainRef",
"trainInCompoundTrainRef",
"trainElementRef",
"trainComponentRef",
"entranceToVehicleRef",
"formationStatus",
"vehicleInFormationStatus",
"situationRef",
"recommendedAction",
"extensions"
})
public class FormationConditionStructure {
@XmlElement(name = "CompoundTrainRef")
protected CompoundTrainRefStructure compoundTrainRef;
@XmlElement(name = "TrainRef")
protected TrainRefStructure trainRef;
@XmlElement(name = "TrainInCompoundTrainRef")
protected TrainInCompoundTrainRefStructure trainInCompoundTrainRef;
@XmlElement(name = "TrainElementRef")
protected TrainElementRefStructure trainElementRef;
@XmlElement(name = "TrainComponentRef")
protected TrainComponentRefStructure trainComponentRef;
@XmlElement(name = "EntranceToVehicleRef")
protected EntranceToVehicleRefStructure entranceToVehicleRef;
@XmlElement(name = "FormationStatus")
protected FormationStatusStructure formationStatus;
@XmlElement(name = "VehicleInFormationStatus")
protected VehicleInFormationStatusStructure vehicleInFormationStatus;
@XmlElement(name = "SituationRef")
protected SituationRefStructure situationRef;
@XmlElement(name = "RecommendedAction")
protected RecommendedActionStructure recommendedAction;
@XmlElement(name = "Extensions")
protected ExtensionsStructure extensions;
/**
* Gets the value of the compoundTrainRef property.
*
* @return
* possible object is
* {@link CompoundTrainRefStructure }
*
*/
public CompoundTrainRefStructure getCompoundTrainRef() {
return compoundTrainRef;
}
/**
* Sets the value of the compoundTrainRef property.
*
* @param value
* allowed object is
* {@link CompoundTrainRefStructure }
*
*/
public void setCompoundTrainRef(CompoundTrainRefStructure value) {
this.compoundTrainRef = value;
}
/**
* Gets the value of the trainRef property.
*
* @return
* possible object is
* {@link TrainRefStructure }
*
*/
public TrainRefStructure getTrainRef() {
return trainRef;
}
/**
* Sets the value of the trainRef property.
*
* @param value
* allowed object is
* {@link TrainRefStructure }
*
*/
public void setTrainRef(TrainRefStructure value) {
this.trainRef = value;
}
/**
* Gets the value of the trainInCompoundTrainRef property.
*
* @return
* possible object is
* {@link TrainInCompoundTrainRefStructure }
*
*/
public TrainInCompoundTrainRefStructure getTrainInCompoundTrainRef() {
return trainInCompoundTrainRef;
}
/**
* Sets the value of the trainInCompoundTrainRef property.
*
* @param value
* allowed object is
* {@link TrainInCompoundTrainRefStructure }
*
*/
public void setTrainInCompoundTrainRef(TrainInCompoundTrainRefStructure value) {
this.trainInCompoundTrainRef = value;
}
/**
* Gets the value of the trainElementRef property.
*
* @return
* possible object is
* {@link TrainElementRefStructure }
*
*/
public TrainElementRefStructure getTrainElementRef() {
return trainElementRef;
}
/**
* Sets the value of the trainElementRef property.
*
* @param value
* allowed object is
* {@link TrainElementRefStructure }
*
*/
public void setTrainElementRef(TrainElementRefStructure value) {
this.trainElementRef = value;
}
/**
* Gets the value of the trainComponentRef property.
*
* @return
* possible object is
* {@link TrainComponentRefStructure }
*
*/
public TrainComponentRefStructure getTrainComponentRef() {
return trainComponentRef;
}
/**
* Sets the value of the trainComponentRef property.
*
* @param value
* allowed object is
* {@link TrainComponentRefStructure }
*
*/
public void setTrainComponentRef(TrainComponentRefStructure value) {
this.trainComponentRef = value;
}
/**
* Gets the value of the entranceToVehicleRef property.
*
* @return
* possible object is
* {@link EntranceToVehicleRefStructure }
*
*/
public EntranceToVehicleRefStructure getEntranceToVehicleRef() {
return entranceToVehicleRef;
}
/**
* Sets the value of the entranceToVehicleRef property.
*
* @param value
* allowed object is
* {@link EntranceToVehicleRefStructure }
*
*/
public void setEntranceToVehicleRef(EntranceToVehicleRefStructure value) {
this.entranceToVehicleRef = value;
}
/**
* Gets the value of the formationStatus property.
*
* @return
* possible object is
* {@link FormationStatusStructure }
*
*/
public FormationStatusStructure getFormationStatus() {
return formationStatus;
}
/**
* Sets the value of the formationStatus property.
*
* @param value
* allowed object is
* {@link FormationStatusStructure }
*
*/
public void setFormationStatus(FormationStatusStructure value) {
this.formationStatus = value;
}
/**
* Gets the value of the vehicleInFormationStatus property.
*
* @return
* possible object is
* {@link VehicleInFormationStatusStructure }
*
*/
public VehicleInFormationStatusStructure getVehicleInFormationStatus() {
return vehicleInFormationStatus;
}
/**
* Sets the value of the vehicleInFormationStatus property.
*
* @param value
* allowed object is
* {@link VehicleInFormationStatusStructure }
*
*/
public void setVehicleInFormationStatus(VehicleInFormationStatusStructure value) {
this.vehicleInFormationStatus = value;
}
/**
* Gets the value of the situationRef property.
*
* @return
* possible object is
* {@link SituationRefStructure }
*
*/
public SituationRefStructure getSituationRef() {
return situationRef;
}
/**
* Sets the value of the situationRef property.
*
* @param value
* allowed object is
* {@link SituationRefStructure }
*
*/
public void setSituationRef(SituationRefStructure value) {
this.situationRef = value;
}
/**
* Gets the value of the recommendedAction property.
*
* @return
* possible object is
* {@link RecommendedActionStructure }
*
*/
public RecommendedActionStructure getRecommendedAction() {
return recommendedAction;
}
/**
* Sets the value of the recommendedAction property.
*
* @param value
* allowed object is
* {@link RecommendedActionStructure }
*
*/
public void setRecommendedAction(RecommendedActionStructure value) {
this.recommendedAction = 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 FormationConditionStructure withCompoundTrainRef(CompoundTrainRefStructure value) {
setCompoundTrainRef(value);
return this;
}
public FormationConditionStructure withTrainRef(TrainRefStructure value) {
setTrainRef(value);
return this;
}
public FormationConditionStructure withTrainInCompoundTrainRef(TrainInCompoundTrainRefStructure value) {
setTrainInCompoundTrainRef(value);
return this;
}
public FormationConditionStructure withTrainElementRef(TrainElementRefStructure value) {
setTrainElementRef(value);
return this;
}
public FormationConditionStructure withTrainComponentRef(TrainComponentRefStructure value) {
setTrainComponentRef(value);
return this;
}
public FormationConditionStructure withEntranceToVehicleRef(EntranceToVehicleRefStructure value) {
setEntranceToVehicleRef(value);
return this;
}
public FormationConditionStructure withFormationStatus(FormationStatusStructure value) {
setFormationStatus(value);
return this;
}
public FormationConditionStructure withVehicleInFormationStatus(VehicleInFormationStatusStructure value) {
setVehicleInFormationStatus(value);
return this;
}
public FormationConditionStructure withSituationRef(SituationRefStructure value) {
setSituationRef(value);
return this;
}
public FormationConditionStructure withRecommendedAction(RecommendedActionStructure value) {
setRecommendedAction(value);
return this;
}
public FormationConditionStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy