All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.filter.capability.Functions Maven / Gradle / Ivy

/*
 *    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;

import java.util.Collection;

/**
 * Supported functions in a capabilities document.
 *
 * 

* *

 *  <xsd:complexType name="FunctionsType">
 *    <xsd:sequence>
 *       <xsd:element name="FunctionNames" type="ogc:FunctionNamesType"/>
 *    </xsd:sequence>
 *  </xsd:complexType>
 * 
* * @author Justin Deoliveira, The Open Planning Project */ public interface Functions { /** * Provided functions. * *

* *

     * <xsd:element name="FunctionNames" type="ogc:FunctionNamesType"/>
     * 
*/ Collection getFunctionNames(); /** * Looks up a function by name, returning null if no such function is found. * * @param name The name of the function. * @return A function, or null. */ FunctionName getFunctionName(String name); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy