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

de.vdv.ojp20.siri.AffectedStopPlaceStructure Maven / Gradle / Ivy

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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
import uk.org.ifopt.acsb.AccessibilityAssessmentStructure;
import uk.org.ifopt.ifopt.NavigationPathRefStructure;
import uk.org.ifopt.ifopt.StopPlaceRefStructure;


/**
 * 

Java class for AffectedStopPlaceStructure complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *               
 *                 
 *                   
 *                 
 *               
 *             
 *           
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AffectedStopPlaceStructure", propOrder = { "stopPlaceRef", "placeName", "stopPlaceType", "affectedFacilities", "affectedComponents", "affectedNavigationPaths", "lines", "extensions" }) public class AffectedStopPlaceStructure extends AffectedStopPlaceElementStructure { @XmlElement(name = "StopPlaceRef", required = true) protected StopPlaceRefStructure stopPlaceRef; @XmlElement(name = "PlaceName") protected List placeName; @XmlElement(name = "StopPlaceType") @XmlSchemaType(name = "string") protected StopPlaceTypeEnumeration stopPlaceType; @XmlElement(name = "AffectedFacilities") protected AffectedStopPlaceStructure.AffectedFacilities affectedFacilities; @XmlElement(name = "AffectedComponents") protected AffectedStopPlaceStructure.AffectedComponents affectedComponents; @XmlElement(name = "AffectedNavigationPaths") protected AffectedStopPlaceStructure.AffectedNavigationPaths affectedNavigationPaths; @XmlElement(name = "Lines") protected AffectedStopPlaceStructure.Lines lines; @XmlElement(name = "Extensions") protected ExtensionsStructure extensions; /** * Gets the value of the stopPlaceRef property. * * @return * possible object is * {@link StopPlaceRefStructure } * */ public StopPlaceRefStructure getStopPlaceRef() { return stopPlaceRef; } /** * Sets the value of the stopPlaceRef property. * * @param value * allowed object is * {@link StopPlaceRefStructure } * */ public void setStopPlaceRef(StopPlaceRefStructure value) { this.stopPlaceRef = value; } /** * Gets the value of the placeName 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 JAXB object. * This is why there is not a set method for the placeName property.

* *

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

*
     * getPlaceName().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } *

* * * @return * The value of the placeName property. */ public List getPlaceName() { if (placeName == null) { placeName = new ArrayList<>(); } return this.placeName; } /** * Gets the value of the stopPlaceType property. * * @return * possible object is * {@link StopPlaceTypeEnumeration } * */ public StopPlaceTypeEnumeration getStopPlaceType() { return stopPlaceType; } /** * Sets the value of the stopPlaceType property. * * @param value * allowed object is * {@link StopPlaceTypeEnumeration } * */ public void setStopPlaceType(StopPlaceTypeEnumeration value) { this.stopPlaceType = value; } /** * Gets the value of the affectedFacilities property. * * @return * possible object is * {@link AffectedStopPlaceStructure.AffectedFacilities } * */ public AffectedStopPlaceStructure.AffectedFacilities getAffectedFacilities() { return affectedFacilities; } /** * Sets the value of the affectedFacilities property. * * @param value * allowed object is * {@link AffectedStopPlaceStructure.AffectedFacilities } * */ public void setAffectedFacilities(AffectedStopPlaceStructure.AffectedFacilities value) { this.affectedFacilities = value; } /** * Gets the value of the affectedComponents property. * * @return * possible object is * {@link AffectedStopPlaceStructure.AffectedComponents } * */ public AffectedStopPlaceStructure.AffectedComponents getAffectedComponents() { return affectedComponents; } /** * Sets the value of the affectedComponents property. * * @param value * allowed object is * {@link AffectedStopPlaceStructure.AffectedComponents } * */ public void setAffectedComponents(AffectedStopPlaceStructure.AffectedComponents value) { this.affectedComponents = value; } /** * Gets the value of the affectedNavigationPaths property. * * @return * possible object is * {@link AffectedStopPlaceStructure.AffectedNavigationPaths } * */ public AffectedStopPlaceStructure.AffectedNavigationPaths getAffectedNavigationPaths() { return affectedNavigationPaths; } /** * Sets the value of the affectedNavigationPaths property. * * @param value * allowed object is * {@link AffectedStopPlaceStructure.AffectedNavigationPaths } * */ public void setAffectedNavigationPaths(AffectedStopPlaceStructure.AffectedNavigationPaths value) { this.affectedNavigationPaths = value; } /** * Gets the value of the lines property. * * @return * possible object is * {@link AffectedStopPlaceStructure.Lines } * */ public AffectedStopPlaceStructure.Lines getLines() { return lines; } /** * Sets the value of the lines property. * * @param value * allowed object is * {@link AffectedStopPlaceStructure.Lines } * */ public void setLines(AffectedStopPlaceStructure.Lines value) { this.lines = 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 AffectedStopPlaceStructure withStopPlaceRef(StopPlaceRefStructure value) { setStopPlaceRef(value); return this; } public AffectedStopPlaceStructure withPlaceName(NaturalLanguageStringStructure... values) { if (values!= null) { for (NaturalLanguageStringStructure value: values) { getPlaceName().add(value); } } return this; } public AffectedStopPlaceStructure withPlaceName(Collection values) { if (values!= null) { getPlaceName().addAll(values); } return this; } public AffectedStopPlaceStructure withStopPlaceType(StopPlaceTypeEnumeration value) { setStopPlaceType(value); return this; } public AffectedStopPlaceStructure withAffectedFacilities(AffectedStopPlaceStructure.AffectedFacilities value) { setAffectedFacilities(value); return this; } public AffectedStopPlaceStructure withAffectedComponents(AffectedStopPlaceStructure.AffectedComponents value) { setAffectedComponents(value); return this; } public AffectedStopPlaceStructure withAffectedNavigationPaths(AffectedStopPlaceStructure.AffectedNavigationPaths value) { setAffectedNavigationPaths(value); return this; } public AffectedStopPlaceStructure withLines(AffectedStopPlaceStructure.Lines value) { setLines(value); return this; } public AffectedStopPlaceStructure withExtensions(ExtensionsStructure value) { setExtensions(value); return this; } @Override public AffectedStopPlaceStructure withAccessibilityAssessment(AccessibilityAssessmentStructure value) { setAccessibilityAssessment(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 = { "affectedComponent" }) public static class AffectedComponents { @XmlElement(name = "AffectedComponent") protected List affectedComponent; /** * Gets the value of the affectedComponent 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 JAXB object. * This is why there is not a set method for the affectedComponent property.

* *

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

*
         * getAffectedComponent().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AffectedStopPlaceComponentStructure } *

* * * @return * The value of the affectedComponent property. */ public List getAffectedComponent() { if (affectedComponent == null) { affectedComponent = new ArrayList<>(); } return this.affectedComponent; } public AffectedStopPlaceStructure.AffectedComponents withAffectedComponent(AffectedStopPlaceComponentStructure... values) { if (values!= null) { for (AffectedStopPlaceComponentStructure value: values) { getAffectedComponent().add(value); } } return this; } public AffectedStopPlaceStructure.AffectedComponents withAffectedComponent(Collection values) { if (values!= null) { getAffectedComponent().addAll(values); } 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 = { "affectedFacility" }) public static class AffectedFacilities { @XmlElement(name = "AffectedFacility", required = true) protected List affectedFacility; /** * Gets the value of the affectedFacility 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 JAXB object. * This is why there is not a set method for the affectedFacility property.

* *

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

*
         * getAffectedFacility().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AffectedFacilityStructure } *

* * * @return * The value of the affectedFacility property. */ public List getAffectedFacility() { if (affectedFacility == null) { affectedFacility = new ArrayList<>(); } return this.affectedFacility; } public AffectedStopPlaceStructure.AffectedFacilities withAffectedFacility(AffectedFacilityStructure... values) { if (values!= null) { for (AffectedFacilityStructure value: values) { getAffectedFacility().add(value); } } return this; } public AffectedStopPlaceStructure.AffectedFacilities withAffectedFacility(Collection values) { if (values!= null) { getAffectedFacility().addAll(values); } 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 = { "navigationPathRef" }) public static class AffectedNavigationPaths { @XmlElement(name = "NavigationPathRef", required = true) protected List navigationPathRef; /** * Gets the value of the navigationPathRef 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 JAXB object. * This is why there is not a set method for the navigationPathRef property.

* *

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

*
         * getNavigationPathRef().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NavigationPathRefStructure } *

* * * @return * The value of the navigationPathRef property. */ public List getNavigationPathRef() { if (navigationPathRef == null) { navigationPathRef = new ArrayList<>(); } return this.navigationPathRef; } public AffectedStopPlaceStructure.AffectedNavigationPaths withNavigationPathRef(NavigationPathRefStructure... values) { if (values!= null) { for (NavigationPathRefStructure value: values) { getNavigationPathRef().add(value); } } return this; } public AffectedStopPlaceStructure.AffectedNavigationPaths withNavigationPathRef(Collection values) { if (values!= null) { getNavigationPathRef().addAll(values); } 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 = { "affectedLine" }) public static class Lines { @XmlElement(name = "AffectedLine", required = true) protected List affectedLine; /** * Gets the value of the affectedLine 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 JAXB object. * This is why there is not a set method for the affectedLine property.

* *

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

*
         * getAffectedLine().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AffectedLineStructure } *

* * * @return * The value of the affectedLine property. */ public List getAffectedLine() { if (affectedLine == null) { affectedLine = new ArrayList<>(); } return this.affectedLine; } public AffectedStopPlaceStructure.Lines withAffectedLine(AffectedLineStructure... values) { if (values!= null) { for (AffectedLineStructure value: values) { getAffectedLine().add(value); } } return this; } public AffectedStopPlaceStructure.Lines withAffectedLine(Collection values) { if (values!= null) { getAffectedLine().addAll(values); } 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 - 2025 Weber Informatics LLC | Privacy Policy