Package org.geotools.filter.capability

Examples of org.geotools.filter.capability.FunctionNameImpl


      return name;
    }
   
    public synchronized FunctionName getFunctionName() {
        if( functionName == null ){
            functionName = new FunctionNameImpl( getName(), functionName.getArgumentCount() );
        }
        return functionName;
    }
View Full Code Here


public class CollectGeometriesFunction extends FunctionImpl {

    long maxCoordinates;

    public CollectGeometriesFunction(Name name, List<Expression> args, Literal fallback, long maxCoordinates) {
        functionName = new FunctionNameImpl(name, args != null ? args.size() : -1);
        setName(name.getLocalPart());
        setFallbackValue(fallback);
        setParameters(args);
        this.maxCoordinates = maxCoordinates;
View Full Code Here

            boolean single, int maxResults) {
        this.catalog = catalog;
        this.maxResults = maxResults;
        this.single = single;

        functionName = new FunctionNameImpl(name, args != null ? args.size() : -1);
        setName(name.getLocalPart());
        setFallbackValue(fallback);
        setParameters(args);
       
        if (args.size() < 3 || args.size() > 4) {
View Full Code Here

    PythonFilterFunctionAdapter adapter;
   
    public PythonFunction(Name name, List<Expression> args, PythonFilterFunctionAdapter adapter) {
        setName(name.getLocalPart());
        setParameters(args);
        functionName = new FunctionNameImpl(name, args.size());
        this.adapter = adapter;
    }
View Full Code Here

    class Function extends FunctionImpl implements VolatileFunction {
   
        Function(Name name, List<Expression> params) {
            setName(name.getLocalPart());
            setParameters(params);
            functionName = new FunctionNameImpl(name, params.size());
        }
View Full Code Here

TOP

Related Classes of org.geotools.filter.capability.FunctionNameImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.