org.rutebanken.netex.model.PathLinkInSequence_VersionedChildStructure 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.XmlSchemaType;
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 PathLinkInSequence_VersionedChildStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PathLinkInSequence_VersionedChildStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}LinkInLinkSequence_VersionedChildStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}PathLinkInSequenceGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PathLinkInSequence_VersionedChildStructure", propOrder = {
"pathLinkRef",
"description",
"reverse",
"heading",
"transition",
"instruction",
"label",
"views"
})
@XmlSeeAlso({
PathLinkInSequence.class
})
public class PathLinkInSequence_VersionedChildStructure
extends LinkInLinkSequence_VersionedChildStructure
{
@XmlElement(name = "PathLinkRef", required = true)
protected PathLinkRefStructure pathLinkRef;
@XmlElement(name = "Description")
protected MultilingualString description;
@XmlElement(name = "Reverse")
protected Boolean reverse;
@XmlElement(name = "Heading")
@XmlSchemaType(name = "NMTOKEN")
protected PathHeadingEnumeration heading;
@XmlElement(name = "Transition")
@XmlSchemaType(name = "NMTOKEN")
protected TransitionEnumeration transition;
@XmlElement(name = "Instruction")
protected MultilingualString instruction;
@XmlElement(name = "Label")
protected MultilingualString label;
protected PathLinkInSequence_VersionedChildStructure.Views views;
/**
* Gets the value of the pathLinkRef property.
*
* @return
* possible object is
* {@link PathLinkRefStructure }
*
*/
public PathLinkRefStructure getPathLinkRef() {
return pathLinkRef;
}
/**
* Sets the value of the pathLinkRef property.
*
* @param value
* allowed object is
* {@link PathLinkRefStructure }
*
*/
public void setPathLinkRef(PathLinkRefStructure value) {
this.pathLinkRef = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setDescription(MultilingualString value) {
this.description = value;
}
/**
* Gets the value of the reverse property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isReverse() {
return reverse;
}
/**
* Sets the value of the reverse property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setReverse(Boolean value) {
this.reverse = value;
}
/**
* Gets the value of the heading property.
*
* @return
* possible object is
* {@link PathHeadingEnumeration }
*
*/
public PathHeadingEnumeration getHeading() {
return heading;
}
/**
* Sets the value of the heading property.
*
* @param value
* allowed object is
* {@link PathHeadingEnumeration }
*
*/
public void setHeading(PathHeadingEnumeration value) {
this.heading = value;
}
/**
* Gets the value of the transition property.
*
* @return
* possible object is
* {@link TransitionEnumeration }
*
*/
public TransitionEnumeration getTransition() {
return transition;
}
/**
* Sets the value of the transition property.
*
* @param value
* allowed object is
* {@link TransitionEnumeration }
*
*/
public void setTransition(TransitionEnumeration value) {
this.transition = value;
}
/**
* Gets the value of the instruction property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getInstruction() {
return instruction;
}
/**
* Sets the value of the instruction property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setInstruction(MultilingualString value) {
this.instruction = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setLabel(MultilingualString value) {
this.label = value;
}
/**
* Gets the value of the views property.
*
* @return
* possible object is
* {@link PathLinkInSequence_VersionedChildStructure.Views }
*
*/
public PathLinkInSequence_VersionedChildStructure.Views getViews() {
return views;
}
/**
* Sets the value of the views property.
*
* @param value
* allowed object is
* {@link PathLinkInSequence_VersionedChildStructure.Views }
*
*/
public void setViews(PathLinkInSequence_VersionedChildStructure.Views value) {
this.views = value;
}
public PathLinkInSequence_VersionedChildStructure withPathLinkRef(PathLinkRefStructure value) {
setPathLinkRef(value);
return this;
}
public PathLinkInSequence_VersionedChildStructure withDescription(MultilingualString value) {
setDescription(value);
return this;
}
public PathLinkInSequence_VersionedChildStructure withReverse(Boolean value) {
setReverse(value);
return this;
}
public PathLinkInSequence_VersionedChildStructure withHeading(PathHeadingEnumeration value) {
setHeading(value);
return this;
}
public PathLinkInSequence_VersionedChildStructure withTransition(TransitionEnumeration value) {
setTransition(value);
return this;
}
public PathLinkInSequence_VersionedChildStructure withInstruction(MultilingualString value) {
setInstruction(value);
return this;
}
public PathLinkInSequence_VersionedChildStructure withLabel(MultilingualString value) {
setLabel(value);
return this;
}
public PathLinkInSequence_VersionedChildStructure withViews(PathLinkInSequence_VersionedChildStructure.Views value) {
setViews(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withLinkSequenceRef(JAXBElement extends LinkSequenceRefStructure> value) {
setLinkSequenceRef(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withProjections(Projections_RelStructure value) {
setProjections(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withOrder(BigInteger value) {
setOrder(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public PathLinkInSequence_VersionedChildStructure 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);
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.netex.org.uk/netex}PathLinkView"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"pathLinkView"
})
public static class Views {
@XmlElement(name = "PathLinkView", required = true)
protected PathLinkView pathLinkView;
/**
* Gets the value of the pathLinkView property.
*
* @return
* possible object is
* {@link PathLinkView }
*
*/
public PathLinkView getPathLinkView() {
return pathLinkView;
}
/**
* Sets the value of the pathLinkView property.
*
* @param value
* allowed object is
* {@link PathLinkView }
*
*/
public void setPathLinkView(PathLinkView value) {
this.pathLinkView = value;
}
public PathLinkInSequence_VersionedChildStructure.Views withPathLinkView(PathLinkView value) {
setPathLinkView(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