Package org.bitbucket.rehei.sparqljava.query

Examples of org.bitbucket.rehei.sparqljava.query.group


        .fromNamed("http://example.org/people", new where() {
          {
            select("SUM(?book) as ?totalAmountOfBooks",
                new where() {
                  {
                    $(new group() {
                      {
                        $("?book rdf:type <Book>");
                      }
                    }).union(new group() {
                      {
                        $("?book rdf:type <Magazine>");
                      }
                    });
                  }
                });

            $(new group() {
              {
                $("?author <hasWritten> ?book");
              }
            }).union(new group() {
              {
                $("?author <hasContributedTo> ?book ");
              }
            });
View Full Code Here

TOP

Related Classes of org.bitbucket.rehei.sparqljava.query.group

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.