org.rutebanken.netex.model.NavigationPathAssignment_VersionStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netex-java-model Show documentation
Show all versions of netex-java-model Show documentation
Generates Java model from NeTEx XSDs using JAXB.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.09.21 at 10:53:23 AM CEST
//
package org.rutebanken.netex.model;
import java.math.BigInteger;
import java.time.OffsetDateTime;
import java.util.Collection;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for NavigationPathAssignment_VersionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NavigationPathAssignment_VersionStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}StopAssignment_VersionStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}NavigationPathAssignmentGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NavigationPathAssignment_VersionStructure", propOrder = {
"connectionRef",
"siteRef",
"navigationPathRef"
})
@XmlSeeAlso({
NavigationPathAssignment.class
})
public class NavigationPathAssignment_VersionStructure
extends StopAssignment_VersionStructure
{
@XmlElementRef(name = "ConnectionRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false)
protected JAXBElement extends ConnectionRefStructure> connectionRef;
@XmlElementRef(name = "SiteRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false)
protected JAXBElement extends SiteRefStructure> siteRef;
@XmlElement(name = "NavigationPathRef")
protected NavigationPathRefStructure navigationPathRef;
/**
* Gets the value of the connectionRef property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link DefaultConnectionRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link SiteConnectionRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ConnectionRefStructure }{@code >}
*
*/
public JAXBElement extends ConnectionRefStructure> getConnectionRef() {
return connectionRef;
}
/**
* Sets the value of the connectionRef property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link DefaultConnectionRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link SiteConnectionRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ConnectionRefStructure }{@code >}
*
*/
public void setConnectionRef(JAXBElement extends ConnectionRefStructure> value) {
this.connectionRef = value;
}
/**
* Gets the value of the siteRef property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link PointOfInterestRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link StopPlaceRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link SiteRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ParkingRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ServiceSIteRefStructure }{@code >}
*
*/
public JAXBElement extends SiteRefStructure> getSiteRef() {
return siteRef;
}
/**
* Sets the value of the siteRef property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link PointOfInterestRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link StopPlaceRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link SiteRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ParkingRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ServiceSIteRefStructure }{@code >}
*
*/
public void setSiteRef(JAXBElement extends SiteRefStructure> value) {
this.siteRef = value;
}
/**
* Gets the value of the navigationPathRef property.
*
* @return
* possible object is
* {@link NavigationPathRefStructure }
*
*/
public NavigationPathRefStructure getNavigationPathRef() {
return navigationPathRef;
}
/**
* Sets the value of the navigationPathRef property.
*
* @param value
* allowed object is
* {@link NavigationPathRefStructure }
*
*/
public void setNavigationPathRef(NavigationPathRefStructure value) {
this.navigationPathRef = value;
}
public NavigationPathAssignment_VersionStructure withConnectionRef(JAXBElement extends ConnectionRefStructure> value) {
setConnectionRef(value);
return this;
}
public NavigationPathAssignment_VersionStructure withSiteRef(JAXBElement extends SiteRefStructure> value) {
setSiteRef(value);
return this;
}
public NavigationPathAssignment_VersionStructure withNavigationPathRef(NavigationPathRefStructure value) {
setNavigationPathRef(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withBoardingUse(Boolean value) {
setBoardingUse(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withAlightingUse(Boolean value) {
setAlightingUse(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withPrivateCode(PrivateCodeStructure value) {
setPrivateCode(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withScheduledStopPointRef(JAXBElement extends ScheduledStopPointRefStructure> value) {
setScheduledStopPointRef(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withScheduledStopPoint(ScheduledStopPoint value) {
setScheduledStopPoint(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withName(MultilingualString value) {
setName(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withDescription(MultilingualString value) {
setDescription(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withOrder(BigInteger value) {
setOrder(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withKeyList(KeyListStructure value) {
setKeyList(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) {
setAlternativeTexts(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withResponsibilitySetRef(String value) {
setResponsibilitySetRef(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public NavigationPathAssignment_VersionStructure withId(String value) {
setId(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 - 2024 Weber Informatics LLC | Privacy Policy