Package net.opengis.gml._3
Class CurveArrayPropertyType
- java.lang.Object
-
- net.opengis.gml._3.CurveArrayPropertyType
-
- All Implemented Interfaces:
Serializable
public class CurveArrayPropertyType extends Object implements Serializable
A container for an array of curves. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements via XLinks is not supported.Java class for CurveArrayPropertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CurveArrayPropertyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element ref="{http://www.opengis.net/gml/3.2}AbstractCurve"/> </sequence> <attGroup ref="{http://www.opengis.net/gml/3.2}OwnershipAttributeGroup"/> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<jakarta.xml.bind.JAXBElement<? extends AbstractCurveType>>abstractCurvesprotected Booleanowns
-
Constructor Summary
Constructors Constructor Description CurveArrayPropertyType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<jakarta.xml.bind.JAXBElement<? extends AbstractCurveType>>getAbstractCurves()Gets the value of the abstractCurves property.booleanisOwns()Gets the value of the owns property.voidsetOwns(Boolean value)Sets the value of the owns property.
-
-
-
Field Detail
-
abstractCurves
protected List<jakarta.xml.bind.JAXBElement<? extends AbstractCurveType>> abstractCurves
-
owns
protected Boolean owns
-
-
Method Detail
-
getAbstractCurves
public List<jakarta.xml.bind.JAXBElement<? extends AbstractCurveType>> getAbstractCurves()
Gets the value of the abstractCurves 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
setmethod for the abstractCurves property.For example, to add a new item, do as follows:
getAbstractCurves().add(newItem);Objects of the following type(s) are allowed in the list
JAXBElement<AbstractCurveType>JAXBElement<LineStringType>
-
isOwns
public boolean isOwns()
Gets the value of the owns property.- Returns:
- possible object is
Boolean
-
-