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

uk.org.siri.siri20.AnnotatedStopPointStructure Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2025.01.07 at 02:19:39 PM UTC 
//


package uk.org.siri.siri20;

import java.io.Serializable;
import java.util.ArrayList;
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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * View of a SCHEDULED STOP POINT description.
 * 
 * 

Java class for AnnotatedStopPointStructure complex type. * *

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

 * <complexType name="AnnotatedStopPointStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="StopPointRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure"/>
 *         <element ref="{http://www.siri.org.uk/siri}TimingPoint" minOccurs="0"/>
 *         <element name="Monitored" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="StopName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="StopAreaRef" type="{http://www.siri.org.uk/siri}StopAreaRefStructure" minOccurs="0"/>
 *         <element name="Features" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <choice maxOccurs="unbounded">
 *                   <element name="ServiceFeature" type="{http://www.siri.org.uk/siri}ServiceFeatureStructure"/>
 *                   <element ref="{http://www.siri.org.uk/siri}ServiceFeatureRef"/>
 *                 </choice>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="Lines" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <choice maxOccurs="unbounded">
 *                   <element name="LineRef" type="{http://www.siri.org.uk/siri}LineRefStructure"/>
 *                   <element name="LineDirection" type="{http://www.siri.org.uk/siri}LineDirectionStructure"/>
 *                 </choice>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="Location" type="{http://www.siri.org.uk/siri}LocationStructure" minOccurs="0"/>
 *         <element name="Url" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnnotatedStopPointStructure", propOrder = { "stopPointRef", "timingPoint", "monitored", "stopNames", "stopAreaRef", "features", "lines", "location", "url" }) @XmlSeeAlso({ StopPointInPatternStructure.class }) public class AnnotatedStopPointStructure implements Serializable { @XmlElement(name = "StopPointRef", required = true) protected StopPointRef stopPointRef; @XmlElement(name = "TimingPoint", defaultValue = "true") protected Boolean timingPoint; @XmlElement(name = "Monitored", defaultValue = "true") protected Boolean monitored; @XmlElement(name = "StopName") protected List stopNames; @XmlElement(name = "StopAreaRef") protected StopAreaRefStructure stopAreaRef; @XmlElement(name = "Features") protected AnnotatedStopPointStructure.Features features; @XmlElement(name = "Lines") protected AnnotatedStopPointStructure.Lines lines; @XmlElement(name = "Location") protected LocationStructure location; @XmlElement(name = "Url") @XmlSchemaType(name = "anyURI") protected String url; /** * Gets the value of the stopPointRef property. * * @return * possible object is * {@link StopPointRef } * */ public StopPointRef getStopPointRef() { return stopPointRef; } /** * Sets the value of the stopPointRef property. * * @param value * allowed object is * {@link StopPointRef } * */ public void setStopPointRef(StopPointRef value) { this.stopPointRef = value; } /** * Gets the value of the timingPoint property. * * @return * possible object is * {@link Boolean } * */ public Boolean isTimingPoint() { return timingPoint; } /** * Sets the value of the timingPoint property. * * @param value * allowed object is * {@link Boolean } * */ public void setTimingPoint(Boolean value) { this.timingPoint = value; } /** * Gets the value of the monitored property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMonitored() { return monitored; } /** * Sets the value of the monitored property. * * @param value * allowed object is * {@link Boolean } * */ public void setMonitored(Boolean value) { this.monitored = value; } /** * Gets the value of the stopNames property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the stopNames property. * *

* For example, to add a new item, do as follows: *

     *    getStopNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getStopNames() { if (stopNames == null) { stopNames = new ArrayList(); } return this.stopNames; } /** * Gets the value of the stopAreaRef property. * * @return * possible object is * {@link StopAreaRefStructure } * */ public StopAreaRefStructure getStopAreaRef() { return stopAreaRef; } /** * Sets the value of the stopAreaRef property. * * @param value * allowed object is * {@link StopAreaRefStructure } * */ public void setStopAreaRef(StopAreaRefStructure value) { this.stopAreaRef = value; } /** * Gets the value of the features property. * * @return * possible object is * {@link AnnotatedStopPointStructure.Features } * */ public AnnotatedStopPointStructure.Features getFeatures() { return features; } /** * Sets the value of the features property. * * @param value * allowed object is * {@link AnnotatedStopPointStructure.Features } * */ public void setFeatures(AnnotatedStopPointStructure.Features value) { this.features = value; } /** * Gets the value of the lines property. * * @return * possible object is * {@link AnnotatedStopPointStructure.Lines } * */ public AnnotatedStopPointStructure.Lines getLines() { return lines; } /** * Sets the value of the lines property. * * @param value * allowed object is * {@link AnnotatedStopPointStructure.Lines } * */ public void setLines(AnnotatedStopPointStructure.Lines value) { this.lines = value; } /** * Gets the value of the location property. * * @return * possible object is * {@link LocationStructure } * */ public LocationStructure getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link LocationStructure } * */ public void setLocation(LocationStructure value) { this.location = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** *

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">
     *       <choice maxOccurs="unbounded">
     *         <element name="ServiceFeature" type="{http://www.siri.org.uk/siri}ServiceFeatureStructure"/>
     *         <element ref="{http://www.siri.org.uk/siri}ServiceFeatureRef"/>
     *       </choice>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "serviceFeaturesAndServiceFeatureReves" }) public static class Features implements Serializable { @XmlElements({ @XmlElement(name = "ServiceFeature", type = ServiceFeature.class), @XmlElement(name = "ServiceFeatureRef", type = ServiceFeatureRef.class) }) protected List serviceFeaturesAndServiceFeatureReves; /** * Gets the value of the serviceFeaturesAndServiceFeatureReves property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the serviceFeaturesAndServiceFeatureReves property. * *

* For example, to add a new item, do as follows: *

         *    getServiceFeaturesAndServiceFeatureReves().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ServiceFeature } * {@link ServiceFeatureRef } * * */ public List getServiceFeaturesAndServiceFeatureReves() { if (serviceFeaturesAndServiceFeatureReves == null) { serviceFeaturesAndServiceFeatureReves = new ArrayList(); } return this.serviceFeaturesAndServiceFeatureReves; } } /** *

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">
     *       <choice maxOccurs="unbounded">
     *         <element name="LineRef" type="{http://www.siri.org.uk/siri}LineRefStructure"/>
     *         <element name="LineDirection" type="{http://www.siri.org.uk/siri}LineDirectionStructure"/>
     *       </choice>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lineRevesAndLineDirections" }) public static class Lines implements Serializable { @XmlElements({ @XmlElement(name = "LineRef", type = LineRef.class), @XmlElement(name = "LineDirection", type = LineDirectionStructure.class) }) protected List lineRevesAndLineDirections; /** * Gets the value of the lineRevesAndLineDirections property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the lineRevesAndLineDirections property. * *

* For example, to add a new item, do as follows: *

         *    getLineRevesAndLineDirections().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LineDirectionStructure } * {@link LineRef } * * */ public List getLineRevesAndLineDirections() { if (lineRevesAndLineDirections == null) { lineRevesAndLineDirections = new ArrayList(); } return this.lineRevesAndLineDirections; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy