Interface ComparisonOperators
- All Known Subinterfaces:
ComparisonOperatorsType
- All Known Implementing Classes:
ComparisonOperatorsImpl,ComparisonOperatorsTypeImpl
public interface ComparisonOperators
Supported comparison operators in a filter capabilities document.
<xsd:complexType name="ComparisonOperatorsType">
<xsd:sequence maxOccurs="unbounded">
<xsd:element name="ComparisonOperator" type="ogc:ComparisonOperatorType"/>
</xsd:sequence>
</xsd:complexType>
- Author:
- Justin Deoliveira, The Open Planning Project
-
Method Summary
Modifier and TypeMethodDescriptiongetOperator(String name) Looks up an operator by name, returning null if no such operator found.Provided comparison operators.
-
Method Details
-
getOperators
Collection<Operator> getOperators()Provided comparison operators.<xsd:element name="ComparisonOperator" type="ogc:ComparisonOperatorType"/>
-
getOperator
Looks up an operator by name, returning null if no such operator found.- Parameters:
name- the name of the operator.- Returns:
- The operator, or null.
-