![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.AimedFlexibleArea Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
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:41 PM UTC
//
package uk.org.siri.siri21;
import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import net.opengis.gml._3.PolygonType;
/**
* Bounding box, circular area or gml:polyon of the area where stops of a flexible service are called. (since SIRI 2.1)
* A flexible area is used in cases where a pre-booked service allows pick-up/drop-off anywhere in a designated area and provides a possible interchange to a higher-frequency service.
*
* Java class for FlexibleAreaStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FlexibleAreaStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="BoundingBox" type="{http://www.siri.org.uk/siri}BoundingBoxStructure"/>
* <element name="CircularArea" type="{http://www.siri.org.uk/siri}CircularAreaStructure"/>
* <element ref="{http://www.opengis.net/gml/3.2}Polygon"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FlexibleAreaStructure", propOrder = {
"polygon",
"circularArea",
"boundingBox"
})
@XmlRootElement(name = "AimedFlexibleArea")
public class AimedFlexibleArea
implements Serializable
{
@XmlElement(name = "Polygon", namespace = "http://www.opengis.net/gml/3.2")
protected PolygonType polygon;
@XmlElement(name = "CircularArea")
protected CircularAreaStructure circularArea;
@XmlElement(name = "BoundingBox")
protected BoundingBoxStructure boundingBox;
/**
* Flexible area specified as a gml:Polygon that consists of an interior and exterior linear ring.
*
* @return
* possible object is
* {@link PolygonType }
*
*/
public PolygonType getPolygon() {
return polygon;
}
/**
* Sets the value of the polygon property.
*
* @param value
* allowed object is
* {@link PolygonType }
*
*/
public void setPolygon(PolygonType value) {
this.polygon = value;
}
/**
* Gets the value of the circularArea property.
*
* @return
* possible object is
* {@link CircularAreaStructure }
*
*/
public CircularAreaStructure getCircularArea() {
return circularArea;
}
/**
* Sets the value of the circularArea property.
*
* @param value
* allowed object is
* {@link CircularAreaStructure }
*
*/
public void setCircularArea(CircularAreaStructure value) {
this.circularArea = value;
}
/**
* Gets the value of the boundingBox property.
*
* @return
* possible object is
* {@link BoundingBoxStructure }
*
*/
public BoundingBoxStructure getBoundingBox() {
return boundingBox;
}
/**
* Sets the value of the boundingBox property.
*
* @param value
* allowed object is
* {@link BoundingBoxStructure }
*
*/
public void setBoundingBox(BoundingBoxStructure value) {
this.boundingBox = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy