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