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

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


        test(op, joinForm) ;
    }
   
    private static void test(Op input, String... joinForm)
    {
        Op op2 = Transformer.transform(new TransformPattern2Join() , input) ;
        String x = StrUtils.strjoinNL(joinForm) ;
        Op opExpected = SSE.parseOp("(prefix ((: <http://example/>)) "+x+")") ;
        assertEquals(opExpected, op2) ;
    }
View Full Code Here

TOP

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

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.