Package uk.org.ifopt.siri20
Class ZoneProjection
- java.lang.Object
-
- uk.org.ifopt.siri20.AbstractProjection
-
- uk.org.ifopt.siri20.ZoneProjection
-
- All Implemented Interfaces:
Serializable
public class ZoneProjection extends AbstractProjection implements Serializable
Type for PROJECTION as a geospatial zone.Java class for ZoneProjectionStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ZoneProjectionStructure"> <complexContent> <extension base="{http://www.ifopt.org.uk/ifopt}AbstractProjection"> <sequence> <element name="Boundary" maxOccurs="unbounded"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.ifopt.org.uk/ifopt}PointProjection" maxOccurs="unbounded" minOccurs="3"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classZoneProjection.BoundaryJava class for anonymous complex type.-
Nested classes/interfaces inherited from class uk.org.ifopt.siri20.AbstractProjection
AbstractProjection.Features
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ZoneProjection.Boundary>boundaries-
Fields inherited from class uk.org.ifopt.siri20.AbstractProjection
features
-
-
Constructor Summary
Constructors Constructor Description ZoneProjection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ZoneProjection.Boundary>getBoundaries()Gets the value of the boundaries property.-
Methods inherited from class uk.org.ifopt.siri20.AbstractProjection
getFeatures, setFeatures
-
-
-
-
Field Detail
-
boundaries
protected List<ZoneProjection.Boundary> boundaries
-
-
Method Detail
-
getBoundaries
public List<ZoneProjection.Boundary> getBoundaries()
Gets the value of the boundaries 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
setmethod for the boundaries property.For example, to add a new item, do as follows:
getBoundaries().add(newItem);Objects of the following type(s) are allowed in the list
ZoneProjection.Boundary
-
-