/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2011, Open Source Geospatial Foundation (OSGeo) * (C) 2005 Open Geospatial Consortium Inc. * * All Rights Reserved. http://www.opengis.org/legal/ */ package org.opengis.filter.capability; /** * Supported arithmetic operators in a filter capabilities document. * <p> * <pre> * <xsd:complexType name="ArithmeticOperatorsType"> * <xsd:choice maxOccurs="unbounded"> * <xsd:element ref="ogc:SimpleArithmetic"/> * <xsd:element name="Functions" type="ogc:FunctionsType"/> * </xsd:choice> * </xsd:complexType> * </pre> * </p> * @author Justin Deoliveira, The Open Planning Project * * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/library/opengis/src/main/java/org/opengis/filter/capability/ArithmeticOperators.java $ */ public interface ArithmeticOperators { /** * Indicates if simple arithmetic is provided. * <p> * <pre> * <xsd:element ref="ogc:SimpleArithmetic"/> * </pre> * </p> */ boolean hasSimpleArithmetic(); /** * Provided functions. * <p> * <pre> * <xsd:element name="Functions" type="ogc:FunctionsType"/> * </pre> * </p> */ Functions getFunctions(); }