Package org.geotools.filter.text.commons

Examples of org.geotools.filter.text.commons.ExpressionToText


     *
     * @param expression
     * @return expression as text
     */
    public static String toCQL( Expression expression ){
        ExpressionToText toCQL = new ExpressionToText();
       
        StringBuilder output = (StringBuilder) expression.accept( toCQL, new StringBuilder() );
       
        return output.toString();       
    }
View Full Code Here


     *
     * @param filter
     * @return expression as text
     */
    public static String toCQL( Expression expression ){
        ExpressionToText toECQL = new ExpressionToText();
       
        StringBuilder output = (StringBuilder) expression.accept( toECQL, new StringBuilder() );
       
        return output.toString();       
    }
View Full Code Here

TOP

Related Classes of org.geotools.filter.text.commons.ExpressionToText

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.