Package com.hp.hpl.jena.sparql.algebra.optimize

Examples of com.hp.hpl.jena.sparql.algebra.optimize.ExprTransformConstantFold


     * Return an expression that is euqivalent to the argument but maybe simpler.   
     * @param expr
     * @return Expression
     */
    public static Expr foldConstants(Expr expr) {
        return ExprTransformer.transform(new ExprTransformConstantFold(), expr) ;
    }
View Full Code Here


     * Return an expression that is euqivalent to the argument but maybe simpler.   
     * @param expr
     * @return Expression
     */
    public static Expr foldConstants(Expr expr) {
        return ExprTransformer.transform(new ExprTransformConstantFold(), expr) ;
    }
View Full Code Here

TOP

Related Classes of com.hp.hpl.jena.sparql.algebra.optimize.ExprTransformConstantFold

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.