All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rutebanken.netex.model.LineShapeStructure Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
//
// 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.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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;


/**
 * 

Java class for LineShapeStructure complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="LineShapeStructure">
 *   <complexContent>
 *     <extension base="{http://www.netex.org.uk/netex}DataManagedObjectStructure">
 *       <sequence>
 *         <element name="Formula" type="{http://www.w3.org/2001/XMLSchema}Name" minOccurs="0"/>
 *         <element name="Name" type="{http://www.netex.org.uk/netex}MultilingualString" minOccurs="0"/>
 *         <element ref="{http://www.netex.org.uk/netex}LinkRef" minOccurs="0"/>
 *         <element name="LocatingSystemRef" type="{http://www.netex.org.uk/netex}SrsNameType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LineShapeStructure", propOrder = { "formula", "name", "linkRef", "locatingSystemRef" }) @XmlSeeAlso({ LineShape.class }) public class LineShapeStructure extends DataManagedObjectStructure { @XmlElement(name = "Formula") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "Name") protected String formula; @XmlElement(name = "Name") protected MultilingualString name; @XmlElementRef(name = "LinkRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false) protected JAXBElement linkRef; @XmlElement(name = "LocatingSystemRef") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String locatingSystemRef; /** * Gets the value of the formula property. * * @return * possible object is * {@link String } * */ public String getFormula() { return formula; } /** * Sets the value of the formula property. * * @param value * allowed object is * {@link String } * */ public void setFormula(String value) { this.formula = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link MultilingualString } * */ public MultilingualString getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link MultilingualString } * */ public void setName(MultilingualString value) { this.name = value; } /** * Gets the value of the linkRef property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link RouteLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link PathLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link InfrastructureLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link WireLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ActivationLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link LineLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link RailwayLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link RoadLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ServiceLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link LinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link TimingLinkRefStructure }{@code >} * */ public JAXBElement getLinkRef() { return linkRef; } /** * Sets the value of the linkRef property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link RouteLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link PathLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link InfrastructureLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link WireLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ActivationLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link LineLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link RailwayLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link RoadLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ServiceLinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link LinkRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link TimingLinkRefStructure }{@code >} * */ public void setLinkRef(JAXBElement value) { this.linkRef = value; } /** * Gets the value of the locatingSystemRef property. * * @return * possible object is * {@link String } * */ public String getLocatingSystemRef() { return locatingSystemRef; } /** * Sets the value of the locatingSystemRef property. * * @param value * allowed object is * {@link String } * */ public void setLocatingSystemRef(String value) { this.locatingSystemRef = value; } public LineShapeStructure withFormula(String value) { setFormula(value); return this; } public LineShapeStructure withName(MultilingualString value) { setName(value); return this; } public LineShapeStructure withLinkRef(JAXBElement value) { setLinkRef(value); return this; } public LineShapeStructure withLocatingSystemRef(String value) { setLocatingSystemRef(value); return this; } @Override public LineShapeStructure withKeyList(KeyListStructure value) { setKeyList(value); return this; } @Override public LineShapeStructure withExtensions(ExtensionsStructure value) { setExtensions(value); return this; } @Override public LineShapeStructure withBrandingRef(BrandingRefStructure value) { setBrandingRef(value); return this; } @Override public LineShapeStructure withAlternativeTexts(AlternativeTexts_RelStructure value) { setAlternativeTexts(value); return this; } @Override public LineShapeStructure withResponsibilitySetRef(String value) { setResponsibilitySetRef(value); return this; } @Override public LineShapeStructure withValidityConditions(ValidityConditions_RelStructure value) { setValidityConditions(value); return this; } @Override public LineShapeStructure withValidBetween(ValidBetween... values) { if (values!= null) { for (ValidBetween value: values) { getValidBetween().add(value); } } return this; } @Override public LineShapeStructure withValidBetween(Collection values) { if (values!= null) { getValidBetween().addAll(values); } return this; } @Override public LineShapeStructure withDataSourceRef(String value) { setDataSourceRef(value); return this; } @Override public LineShapeStructure withCreated(OffsetDateTime value) { setCreated(value); return this; } @Override public LineShapeStructure withChanged(OffsetDateTime value) { setChanged(value); return this; } @Override public LineShapeStructure withModification(ModificationEnumeration value) { setModification(value); return this; } @Override public LineShapeStructure withVersion(String value) { setVersion(value); return this; } @Override public LineShapeStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) { setStatus_BasicModificationDetailsGroup(value); return this; } @Override public LineShapeStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) { setDerivedFromVersionRef_BasicModificationDetailsGroup(value); return this; } @Override public LineShapeStructure withCompatibleWithVersionFrameVersionRef(String value) { setCompatibleWithVersionFrameVersionRef(value); return this; } @Override public LineShapeStructure withDerivedFromObjectRef(String value) { setDerivedFromObjectRef(value); return this; } @Override public LineShapeStructure withNameOfClass(String value) { setNameOfClass(value); return this; } @Override public LineShapeStructure 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