Package nl.b3p.csw.jaxb.filter
Class GeometryOperandsType
- java.lang.Object
-
- nl.b3p.csw.jaxb.filter.GeometryOperandsType
-
public class GeometryOperandsType extends Object
Java class for GeometryOperandsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="GeometryOperandsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="GeometryOperand" type="{http://www.opengis.net/ogc}GeometryOperandType" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<QName>geometryOperand
-
Constructor Summary
Constructors Constructor Description GeometryOperandsType()Default no-arg constructorGeometryOperandsType(List<QName> geometryOperand)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<QName>getGeometryOperand()Gets the value of the geometryOperand property.
-
-
-
Method Detail
-
getGeometryOperand
public List<QName> getGeometryOperand()
Gets the value of the geometryOperand 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 geometryOperand property.For example, to add a new item, do as follows:
getGeometryOperand().add(newItem);Objects of the following type(s) are allowed in the list
QName
-
-