Interface ArithmeticOperators
-
- All Known Implementing Classes:
ArithmeticOperatorsImpl
public interface ArithmeticOperators
Supported arithmetic operators in a filter capabilities document.<xsd:complexType name="ArithmeticOperatorsType"> <xsd:choice maxOccurs="unbounded"> <xsd:element ref="ogc:SimpleArithmetic"/> <xsd:element name="Functions" type="ogc:FunctionsType"/> </xsd:choice> </xsd:complexType>
- Author:
- Justin Deoliveira, The Open Planning Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Functions
getFunctions()
Provided functions.boolean
hasSimpleArithmetic()
Indicates if simple arithmetic is provided.
-
-
-
Method Detail
-
hasSimpleArithmetic
boolean hasSimpleArithmetic()
Indicates if simple arithmetic is provided.<xsd:element ref="ogc:SimpleArithmetic"/>
-
getFunctions
Functions getFunctions()
Provided functions.<xsd:element name="Functions" type="ogc:FunctionsType"/>
-
-