
de.vdv.ojp20.siri.AffectedSectionStructure 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 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.XmlElements;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
import uk.org.ifopt.ifopt.LinkProjectionStructure;
import uk.org.ifopt.ifopt.StopPlaceRefStructure;
/**
* Java class for AffectedSectionStructure complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AffectedSectionStructure", propOrder = {
"sectionRef",
"indirectSectionRef",
"linkProjection",
"offset",
"extensions"
})
public class AffectedSectionStructure {
@XmlElement(name = "SectionRef")
protected SectionRefStructure sectionRef;
@XmlElement(name = "IndirectSectionRef")
protected AffectedSectionStructure.IndirectSectionRef indirectSectionRef;
@XmlElement(name = "LinkProjection")
protected LinkProjectionStructure linkProjection;
@XmlElement(name = "Offset")
protected OffsetStructure offset;
@XmlElement(name = "Extensions")
protected ExtensionsStructure extensions;
/**
* Gets the value of the sectionRef property.
*
* @return
* possible object is
* {@link SectionRefStructure }
*
*/
public SectionRefStructure getSectionRef() {
return sectionRef;
}
/**
* Sets the value of the sectionRef property.
*
* @param value
* allowed object is
* {@link SectionRefStructure }
*
*/
public void setSectionRef(SectionRefStructure value) {
this.sectionRef = value;
}
/**
* Gets the value of the indirectSectionRef property.
*
* @return
* possible object is
* {@link AffectedSectionStructure.IndirectSectionRef }
*
*/
public AffectedSectionStructure.IndirectSectionRef getIndirectSectionRef() {
return indirectSectionRef;
}
/**
* Sets the value of the indirectSectionRef property.
*
* @param value
* allowed object is
* {@link AffectedSectionStructure.IndirectSectionRef }
*
*/
public void setIndirectSectionRef(AffectedSectionStructure.IndirectSectionRef value) {
this.indirectSectionRef = value;
}
/**
* Gets the value of the linkProjection property.
*
* @return
* possible object is
* {@link LinkProjectionStructure }
*
*/
public LinkProjectionStructure getLinkProjection() {
return linkProjection;
}
/**
* Sets the value of the linkProjection property.
*
* @param value
* allowed object is
* {@link LinkProjectionStructure }
*
*/
public void setLinkProjection(LinkProjectionStructure value) {
this.linkProjection = value;
}
/**
* Gets the value of the offset property.
*
* @return
* possible object is
* {@link OffsetStructure }
*
*/
public OffsetStructure getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
* @param value
* allowed object is
* {@link OffsetStructure }
*
*/
public void setOffset(OffsetStructure value) {
this.offset = 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 AffectedSectionStructure withSectionRef(SectionRefStructure value) {
setSectionRef(value);
return this;
}
public AffectedSectionStructure withIndirectSectionRef(AffectedSectionStructure.IndirectSectionRef value) {
setIndirectSectionRef(value);
return this;
}
public AffectedSectionStructure withLinkProjection(LinkProjectionStructure value) {
setLinkProjection(value);
return this;
}
public AffectedSectionStructure withOffset(OffsetStructure value) {
setOffset(value);
return this;
}
public AffectedSectionStructure 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);
}
/**
* Java class for anonymous complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"firstStopPointRef",
"firstStopPlaceRef",
"firstQuayRef",
"intermediateStopPointRefOrIntermediateStopPlaceRefOrIntermediateQuayRef",
"lastStopPointRef",
"lastStopPlaceRef",
"lastQuayRef"
})
public static class IndirectSectionRef {
@XmlElement(name = "FirstStopPointRef")
protected StopPointRefStructure firstStopPointRef;
@XmlElement(name = "FirstStopPlaceRef")
protected StopPlaceRefStructure firstStopPlaceRef;
@XmlElement(name = "FirstQuayRef")
protected QuayRefStructure firstQuayRef;
@XmlElements({
@XmlElement(name = "IntermediateStopPointRef", type = StopPointRefStructure.class),
@XmlElement(name = "IntermediateStopPlaceRef", type = StopPlaceRefStructure.class),
@XmlElement(name = "IntermediateQuayRef", type = QuayRefStructure.class)
})
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy